Skip to content
Pile
Esc
navigateopen⌘Jpreview

List oauth clients

GET/workspaces/{organizationId}/oauth-clients
Path parameters
organizationIdstringrequired
Responses
200OAuth clients list
clientsobject[]required
Show properties
Array of object
idstringrequired
organizationIdstringrequired
namestringrequired
redirectUrisstring[]required
scopesstring[]required
permissionsstringrequired
createdAtstringrequired
Try it
Server
Parameters
Request
curl -X GET "/workspaces/string/oauth-clients"
Response
{
  "clients": [
    {
      "id": "string",
      "organizationId": "string",
      "name": "string",
      "redirectUris": [
        "string"
      ],
      "scopes": [
        "string"
      ],
      "permissions": "string",
      "createdAt": "string"
    }
  ]
}