Preparation
- Create your new App
Make sure you have registered your application in the backoffice, on this page https://dashboard.pawoon.com/integration/settings
- Request Access Token
Access Token is access granted by pawoon, so you can access like view reports, make orders and other access with the GET
, POST
methods
This is how to get the access token:
1. Go to this page https://dashboard.pawoon.com/integration/my-application. Then click this button lihat and click Konfigurasi button. The page will show Application ID
and Secret Key
2. Copying Application ID
and Secret Key
into this page https://docs.pawoon.com/endpoint-collection/oauth/post-oauth-token and make a Body request with json format, like this:
{
"grant_type": "client_credentials",
"client_id": "18",
"client_secret": "KUyUuBEU/zZSr7S47NA5t+a1zHqpOAxE8k02e9Dp0de"
}
3. Click Send
4. You got your Access Token !