ShortCode: Unique identifier for the C2BFirstName: First name of the customer making the payment linkLastName: Last name of the customer making the payment linkEmailAddress: Email Address of the customerPhoneNumber: Phone Number of the customerDescription:Description of the payment linkIsAmountSpecified: Defines whether it is true or falseAmount:Amount that is being transacted.RedirectionSite:The site where one will be redirected to after the payment link is successfulcurl --location --request POST 'https://auth.zamupay.com/v1/payment-link/create-payment-link' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"shortCode": "string",
"firstName": "string",
"lastName": "string",
"emailAddress": "user@example.com",
"phoneNumber": "string",
"accountReference": "string",
"paymentType": "string",
"description": "string",
"isAmountSpecified": true,
"amount": 0,
"currency": "string",
"redirectionSite": "http://example.com"
}'{}