Delete webhook lookup
DELETE/webhooks-lookup/:webhook_lookup_id
Deletes a webhook lookup, by ID.
Request
Path Parameters
webhook_lookup_id stringrequired
The ID of the webhook lookup to delete.
Responses
- 204
- default
A successful request returns the HTTP 204 No Content
status code with no JSON response body.
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...