List webhook lookups
GET/webhooks-lookup
Lists webhook lookups.
Responses
- 200
- default
A successful request returns the HTTP 200 OK
status code and a JSON response body that lists webhook lookups with webhook lookup details.
- application/json
- Schema
- Example (from schema)
Schema
webhooks_lookups object[]
An array of webhook lookups.
{
"webhooks_lookups": [
{
"id": "string",
"client_id": "string",
"links": [
{
"href": "string",
"rel": "string",
"method": "GET"
}
]
}
]
}
The error response.
- application/json
- Schema
- Example (from schema)
Schema
name stringrequired
The human-readable, unique name of the error.
message stringrequired
The message that describes the error.
debug_id stringrequired
The PayPal internal ID. Used for correlation purposes.
information_link string
The information link, or URI, that shows detailed information about this error for the developer.
details object[]
An array of additional details about the error.
links object[]
An array of request-related HATEOAS links.
{
"name": "string",
"message": "string",
"debug_id": "string",
"information_link": "string",
"details": [
{
"field": "string",
"value": "string",
"location": "body",
"issue": "string",
"description": "string"
}
],
"links": [
{
"href": "string",
"rel": "string",
"method": "GET"
}
]
}
Loading...