GET
/
account_providers
cURL
curl --request GET \
  --url http://localhost:8080/account_providers \
  --header 'admin-api-key: <api-key>'
{
  "data": [
    {
      "created_at": "<string>",
      "id": "<string>",
      "last_modified_at": "<string>",
      "name": "<string>",
      "status": "active"
    }
  ],
  "limit": 123,
  "offset": 123,
  "total": 123
}

Authorizations

admin-api-key
string
header
required

Query Parameters

status
null | enum<string>

Account provider lifecycle status.

Available options:
active,
inactive
limit
integer<int32> | null
offset
integer<int32> | null

Response

List of account providers

data
object[]
required
limit
integer<int32>
required
offset
integer<int32>
required
total
integer<int64>
required