Personal Information

edit-btnEdit Profile

Contact Information

Account Information

Get Started Home
p1
Kickstart

In few steps create a new account.

Kickstart
SFDA
nnnnnnnn
Create

Easily create your applications.

Create
SFDA
nn
Manage

Control and manage your applications.

Manage
SFDA
ttt
Go Live

Now go live with your applications.

Go Live
SFDA
Create Application
View Application
Go Live
Step 1

To use any of our services you must send a unique code; To obtain a unique token, you must use the Consumer Key and Consumer Secret of your application (ConsumerKey, ConsumerSecret) as shown in the picture.

curl --location --request POST 'https://api.example.com.sa/v1/oauth2/accesstoken’ \--header 'Content-Type: application/x-www-form-urlencoded’ \ --data-urlencode 'grant_type=client_credentials’ \ --data-urlencode 'client_id=*****************' \ --data-urlencode 'client_secret=**************' 

Step 2

The image below shows an example of an order form that uses token credentials for one of our services.

curl --location 'https://api.example.com.sa/v1/insuranceinquiry/drivercasedetail?driverId=pop&insuranceID=pp' \ -H 'accept: application/json' \ -H 'Authorization: Bearer *********************'