Skip to main content
GET
/
v1
/
scopes
JavaScript
import Augustus from '@augustusbank/typescript-sdk';

const client = new Augustus({
  apiKey: process.env['AUGUSTUS_API_KEY'], // This is the default and can be omitted
});

const scopes = await client.scopes.list();

console.log(scopes.data);
{
  "data": [
    {
      "type": "scope",
      "id": "payouts:read",
      "description": "<string>",
      "resource": "<string>",
      "action": "read",
      "available_from": "<string>",
      "deprecated_in": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.augustus.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token for authentication with Augustus Banking API

Response

200 - application/json

Scope catalogue

data
object[]
required
has_more
boolean
required
next_cursor
string | null
required