Send Bnpl Offering
POST /api/v1/users/bnpl/offering/public
Description
Send a Buy Now Pay Later (BNPL) offering to a user.
Headers:
- Content-Type: application/json
- ApiKey: The platform api key is required to use this endpoint -
{{platformApiKey}}
Request Body: JSON data containing the buyer's email, buyer ID, and total amount.
URL: /api/v1/users/bnpl/offering/public
Response: The response is a "Created" status with a code of 201.
/api/v1/users/bnpl/offering/public
Headers
| Content-Type | Value |
|---|---|
| Content-Type | application/json |
Body (raw)
{
"buyerEmail": "<string>",
"buyerId": "<string>",
"totalAmount": "<number>"
}
Response: 201
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v1/users/bnpl/offering/public \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!