Show webhook lookup details
GET/webhooks-lookup/:webhook_lookup_id
Shows details for a webhook lookup, by ID.
Request
Path Parameters
The ID of the webhook lookup for which to show details.
Responses
- 200
- default
A successful request returns the HTTP 200 OK
status code and a JSON response body that shows webhook lookup details.
- application/json
- Schema
- Example (from schema)
Schema
The ID of the webhook lookup.
The application client ID.
Possible values: <= 128 characters
, Value must match regular expression ^(?!\d+$)\w+\S+
An array of request-related HATEOAS links.
{
"id": "string",
"client_id": "string",
"links": [
{
"href": "string",
"rel": "string",
"method": "GET"
}
]
}
The error response.
- application/json
- Schema
- Example (from schema)
Schema
The human-readable, unique name of the error.
The message that describes the error.
The PayPal internal ID. Used for correlation purposes.
The information link, or URI, that shows detailed information about this error for the developer.
An array of additional details about the error.
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"
}
]
}