GET
/
api
/
v1
/
admin
/
services
/
[
  {
    "name": "<string>",
    "display_name": "<string>",
    "authorization_url": "<string>",
    "token_url": "<string>",
    "scopes_available": "[]",
    "redirect_uri": "<string>",
    "icon_url": "<string>",
    "description": "<string>",
    "is_active": true,
    "id": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

List all third-party service entries (admin only).

  • Method: GET
  • Path: /api/v1/admin/services/

Query Parameters

  • skip (integer, optional): Number of records to skip
  • limit (integer, optional): Maximum number of records to return

Response

Returns an array of ThirdPartyService objects.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

skip
integer
default:0
limit
integer
default:100

Response

200
application/json

Successful Response

The response is of type ThirdPartyService · object[].