cURL
curl --request POST \ --url https://api.orafi.app/v1/paylink/create \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: multipart/form-data' \ --form 'payload=<string>' \ --form 'images=<string>' \ --form images.items='@example-file'
{ "success": true, "message": "<string>", "data": { "id": "<string>", "title": "<string>", "description": "<string>", "amount": 123, "imageBlobIds": [ "<string>" ], "mode": "test", "profileId": "<string>" } }
Create a new paylink with images
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
JSON string containing paylink data
Image files (1-4 images)
Paylink created successfully
Show child attributes