List org tokens
GET
/api/v1/auth/tokens
const url = 'https://api.pkgplease.com/api/v1/auth/tokens';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.pkgplease.com/api/v1/auth/tokens \ --header 'Authorization: Bearer <token>'Excludes session tokens.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Array of token rows
Media typeapplication/json
Array<object>
object
Examplegenerated
[ {}]