curl --location 'https://partner-api-stage.fintegence.io/v1/payment-link' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": "150.50",
"expiresAt": "2026-06-30T12:00:00Z",
"reference": "example_ref",
"note": "example_note",
"payerDetails": {
"type": "PERSONAL",
"email": "john.doe@example.com",
"firstName": "John",
"lastName": "Doe",
"birthDate": "1990-05-20T00:00:00Z",
"residenceCountry": "US",
"birthPlace": "GB",
"phoneNumber": "+1234567890"
}
}'