Organizations list

circle-exclamation

Use this method to get a list of all available organizations.

GET https://a.loopmessage.com/api/v1/organizations/list/

Headers

Name
Type
Description

Authorization*

String

API Key. Required*.

Content-Type*

String

application/json

Query Parameters

Name
Type
Description

sort_by

String

Optional. Sorting order for results. Possible values: asc (ascending) or desc (default).

page

Integer

Optional. The page number to retrieve. Default is 1.

per_page

Integer

Optional. Number of webhook records per page. Default is 20.

search

String

Optional. Filter organizations by a specific value in name.

Response

{
  "page": 1,
  "num_pages": 1,
  "per_page": 20,
  "count": 1,
  "items": [
    {
      "id": "string",
      "name": "string",
      "status": "active",
      "create_date": "2025-01-01T23:59:59Z"
    }
  ]
}

Last updated