Authorization: Bearer ********************
{
"amount": 9980000,
"currency": "NGN",
"description": "Watch purchase",
"reference": "somerandomreferenceforwatch",
"expiresAt": null
}
curl --location --request POST 'https://example.com/api/v1/payment/payments' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 9980000,
"currency": "NGN",
"description": "Watch purchase",
"reference": "somerandomreferenceforwatch",
"expiresAt": null
}'
{
"id": "string",
"amount": 0,
"ownerId": "string",
"currency": "string",
"reference": "string",
"originBankId": null,
"originAccount": null,
"originAccountName": null,
"destinationBankId": "string",
"destinationAccount": "string",
"destinationAccountName": "string",
"description": "string",
"status": "string",
"callbackUrl": "string",
"statusWebhook": "string",
"createdAt": "string",
"updatedAt": "string",
"expiresAt": "string"
}