import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const oauthGrant = await client.oauthGrants.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');
console.log(oauthGrant.data);{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"record_type": "oauth_grant",
"client_id": "<string>",
"scopes": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z"
}
}Retrieve a single OAuth grant by ID
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const oauthGrant = await client.oauthGrants.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');
console.log(oauthGrant.data);{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"record_type": "oauth_grant",
"client_id": "<string>",
"scopes": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OAuth grant ID
OAuth grant details
Show child attributes
Unique identifier for the OAuth grant
Record type identifier
oauth_grant OAuth client identifier
List of granted OAuth scopes
Timestamp when the grant was created
Timestamp when the grant was last used
Was this page helpful?