Create and manage OAuth 2.0 Tokens
codeSuccess
Bad Request
authorization_codeSuccess
Bad Request
refresh_tokenSuccess
Bad Request
Success
Bad Request
POST /api/Session/OAuthTokenRevoke HTTP/1.1
Host: api.fuse.work
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 43
"client_id='text'&refresh_token='text'"GET /api/Session/OAuthRegister?response_type=code&client_id=text&redirect_uri=text&Scope=text HTTP/1.1
Host: api.fuse.work
Accept: */*
binaryPOST /api/Session/OAuthGetToken HTTP/1.1
Host: api.fuse.work
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 113
"grant_type='authorization_code'&code='text'&client_id='text'&client_secret='text'&redirect_uri='text'"{
"token_type": "text",
"access_token": "text",
"refresh_token": "text",
"expires_in": "2025-12-13T05:05:50.936Z",
"refresh_token_expires_in": "2025-12-13T05:05:50.936Z",
"default_tenant_id": "text"
}POST /api/Session/OAuthRefreshToken HTTP/1.1
Host: api.fuse.work
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 95
"grant_type='refresh_token'&refresh_token='text'&client_id='text'&client_secret='text'"{
"token_type": "text",
"access_token": "text",
"refresh_token": "text",
"expires_in": "2025-12-13T05:05:50.936Z",
"refresh_token_expires_in": "2025-12-13T05:05:50.936Z",
"default_tenant_id": "text"
}binary