๐Step 3 - Make Your First API Call
Let's start by creating a transaction. This involves sending a POST request to our /create-transaction endpoint.
Sample POST Request to Create a Transaction:
curl -X POST 'https://live.linkuppay.com/create-transaction' \
-H 'Content-Type: application/json' \
-H 'api-key: your_api_key_here' \
-d '{
"phone": "1234567890",
"amount": 100,
"currency": "USD"
}'Replace 'your_api_key_here' with your actual API key.
Last updated