Skip to main content

order.completed

Sent when an order is completed.

Sends Member object, Customer object and Product object.

{
"object": {
"id": "string",
"orderType": "enum: ['Ticket', 'BroadcastDonation', 'VideoDonation']",
"amount": "decimal",
"netAmount": "decimal",
"paymentMethod": "string",
"status": "enum: ['pending', 'processing', 'express_processing', 'handling_payment', 'completed', 'failed', 'canceled', 'timed_out', 'transferred']",
"createdAt": "iso8601 timestamp",
"type": "order"
},
"customer": {
"id": "uuid v4",
"name": "string in form of '${firstName} ${lastName}'",
"firstName": "string",
"lastName": "string",
"email": "string",
"marketingConsent": "boolean"
},
"product": {
"name": "string",
"date": "string"
}
}