🐣Quick Start

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can get an API key by sending an email to [email protected]

Make your first request to create a new Qattah Order

You can call our API call to create a new Qattah Order with all possible programming languages, see the below example:

curl --location 'https://staging-api.qattahpay.sa/api/v1/merchant-integration/orders' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <api_token>' \
--data '{
    "amount": 100,
    "reference": "common-reference",
    "callback_url": "https://testing-callback.qattahpay.sa",
    "theme":"dark",
    "lang":"ar",
    "currency": "SAR",
    "description": "description",
    "emailAddress": "emailAddress",
    "mobileNumber": "mobileNumber",
    "success_url": "https://www.example.com/success",
    "failure_url": "https://www.example.com/failed"
}'

Last updated