- Authorization
- Orders
- Payments
- Invoices
- Subscriptions
- Payouts
- Webhooks
- List available eventsGET
- Create webhookPOST
- List webhooksGET
- Show webhook detailsGET
- List event notificationsGET
- List event subscriptions for webhookGET
- Show event notification detailsGET
- Trigger a sample eventPOST
- Verify webhook signaturePOST
- Resend event notificationPOST
- Simulate webhook eventPOST
- Update webhookPATCH
- Delete webhookDELETE
- Shipment Tracking
- Transaction Search
- Disputes
- List disputes
- Show dispute details
- Accept claim
- Appeal dispute
- Settle dispute
- Update dispute status
- Make offer to resolve dispute
- Provide evidence
- Acknowledge returned item
- Provide supporting information for dispute
- Escalate dispute to claim
- Accept offer to resolve dispute
- Send message about dispute to other party
- Deny offer to resolve dispute
- Partially update dispute
- Onboarding (Limited Release)
Simulate webhook event
POST
/v1/notifications/simulate-event
/simulate-event
resource to use a sample payload to simulate a webhook event. The events that this call generates only serve to validate the connection to the listener URL and to show how webhook events look. Note: You can also use the Webhooks simulator to simulate webhook events.
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Basic 之后拼接空格,以及经过 Base64 编码的 username:password
示例:
Authorization: Basic *****************
Header 参数
Content-Type
string
必需
示例值:
application/json
PayPal-Request-Id
string
必需
示例值:
{{$guid}}
Body 参数application/json
event_type
string
必需
webhook_id
string
必需
url
string
必需
resource_version
string
必需
示例
{
"event_type": "CUSTOMER.DISPUTE.CREATED",
"webhook_id": "{{webhook_id}}",
"url": "{{webhook_url}}",
"resource_version": "1.0"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-m.sandbox.paypal.com/v1/notifications/simulate-event' \
--header 'PayPal-Request-Id: ' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"event_type": "CUSTOMER.DISPUTE.CREATED",
"webhook_id": "{{webhook_id}}",
"url": "{{webhook_url}}",
"resource_version": "1.0"
}'
返回响应
🟢202202 - Simulate Webhook Event
application/json
Body
id
string
必需
create_time
string
必需
resource_type
string
必需
event_type
string
必需
summary
string
必需
resource
object
必需
disputed_transactions
array [object {4}]
必需
reason
string
必需
dispute_channel
string
必需
update_time
string
必需
create_time
string
必需
messages
array [object {3}]
必需
links
array [object {3}]
必需
dispute_amount
object
必需
dispute_id
string
必需
dispute_life_cycle_stage
string
必需
status
string
必需
links
array [object {4}]
必需
href
string
必需
rel
string
必需
method
string
必需
encType
string
必需
event_version
string
必需
示例
{
"id": "WH-4M0448861G563140B-9EX36365822141321",
"create_time": "2018-06-21T13:36:33.000Z",
"resource_type": "dispute",
"event_type": "CUSTOMER.DISPUTE.CREATED",
"summary": "A new dispute opened with Case # PP-000-042-663-135",
"resource": {
"disputed_transactions": [
{
"seller_transaction_id": "00D10444LD479031K",
"seller": {
"merchant_id": "RD465XN5VS364",
"name": "Test Store"
},
"items": [],
"seller_protection_eligible": true
}
],
"reason": "MERCHANDISE_OR_SERVICE_NOT_RECEIVED",
"dispute_channel": "INTERNAL",
"update_time": "2018-06-21T13:35:44.000Z",
"create_time": "2018-06-21T13:35:44.000Z",
"messages": [
{
"posted_by": "BUYER",
"time_posted": "2018-06-21T13:35:52.000Z",
"content": "qwqwqwq"
}
],
"links": [
{
"href": "https://api.sandbox.paypal.com/v1/customer/disputes/PP-000-042-663-135",
"rel": "self",
"method": "GET"
},
{
"href": "https://api.sandbox.paypal.com/v1/customer/disputes/PP-000-042-663-135/send-message",
"rel": "send_message",
"method": "POST"
}
],
"dispute_amount": {
"currency_code": "USD",
"value": "3.00"
},
"dispute_id": "PP-000-042-663-135",
"dispute_life_cycle_stage": "INQUIRY",
"status": "OPEN"
},
"links": [
{
"href": "https://api.sandbox.paypal.com/v1/notifications/webhooks-events/WH-4M0448861G563140B-9EX36365822141321",
"rel": "self",
"method": "GET",
"encType": "application/json"
},
{
"href": "https://api.sandbox.paypal.com/v1/notifications/webhooks-events/WH-4M0448861G563140B-9EX36365822141321/resend",
"rel": "resend",
"method": "POST",
"encType": "application/json"
}
],
"event_version": "1.0"
}
🟠401401 Unauthorized - Invalid Token
修改于 2023-08-16 07:18:59