curl --location 'https://test01-app.sipay.co.za/ccpayment/api/token' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"app_id": "your-app-id",
"app_secret": "your-app-secret"
}'{
"status_code": 100,
"status_description": "Successfully Generated token",
"data": {
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOi...",
"merchant_id": 12345,
"is_3d": 1,
"expires_at": "2026-05-20 18:30:00"
}
}