List invites
GET
/api/v1/orgs/invites
const url = 'https://api.pkgplease.com/api/v1/orgs/invites';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/orgs/invites \ --header 'Authorization: Bearer <token>'Returned rows omit the token field.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Invite list
Media typeapplication/json
object
invites
Array<object>
object
Examplegenerated
{ "invites": [ {} ]}