ESC
Start typing to search documentation...
Navigation

Authorization

Detailed technical documentation and implementation guide for Authorization.

Authorization #

Exchange OAuth code for token #

POST https://{{site}}.myjoonweb.com/api/admin/{{api_version}}/oauth/access_token

Headers

Key Value
X-JoonWeb-Access-Token access_token

Request Body

{
    "client_id": "YOUR_APP_ID",
    "client_secret" :"YOUR_APP_SECRET",
    "code" : "jw_xxxxxx" // Code Recieved from JoonWeb through OAuth $_GET['code']
}

Responses

200
{
  "status": "success"
}
Last modified: Mar 09, 2026