Confirm Payment
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"payment_amount": 0,
"payment_id": "string",
"signature": "string"
}
Request Code Samples
curl --location --request POST 'http://petfen-payment.local.com:8085/api/v1/payment/confirm' \
--header 'X-Auth-Service: Bearer ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"payment_amount": 0,
"payment_id": "string",
"signature": "string"
}'
Responses
application/json Modified at 2025-04-15 09:47:46