Please enable JavaScript.
Coggle requires JavaScript to display documents.
API - Authentication, API - Authentication - Coggle Diagram
API - Authentication
Request
Endpoint: /oauth/token
Method: POST
Content-Type: application/x-www-form-urlencoded
Body
client_id
status: Mandatory
value: <Client ID>
client_secret
status: Mandatory
value: <Client Secret>
grant_type
status: Mandatory
value: client_credentials
scope
status: Mandatory
value: <static_value>
Response
response code: 200
payload:
{
"access_token": string,
"expires_in": string,
"token_type": string
}
access_token
type: string
value: <Access Token>
expires_in
type: string
value: <Exp Time>
token_type
type: string
value: Bearer
API - Authentication