Skip to main content
GET
/
organizations
/
{organizationId}
/
service-accounts
List Service Accounts
curl --request GET \
  --url https://{regionAndDomain}.com/api/app/organizations/{organizationId}/service-accounts \
  --header 'Authorization: Basic <encoded-value>'
{
  "results": [
    {
      "id": 123,
      "username": "<string>",
      "last_used": "2023-11-07T05:31:56Z",
      "expires": "2023-11-07T05:31:56Z",
      "creator": 123,
      "created": "2023-11-07T05:31:56Z",
      "user": 123
    }
  ],
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Service Account

Path Parameters

organizationId
integer
required

Your organization id (eg: 12345)

Response

Success

results
object[]
status
enum<string>

"ok" if the request succeeded, "error" otherwise.

Available options:
ok
Example:

"ok"