Get application

Retrieve a single application by ID.

Returns 404 if the application does not exist or does not belong to the target organization.

Securityorg-oidc-token
Request
path Parameters
org
required
string (OrgId) [ 3 .. 64 ] characters ^([a-z][a-z0-9-]{1,62}[a-z0-9])$

ID of an organization

Example: my-org
clientId
required
string (ClientId)

ID of an application

Example: f4a3e291-7682-4148-89c0-be3a8f17eb23
Responses
200

An application.

400

Bad request.

401

The caller is not authenticated or does not have the required permissions.

404

The application or organization does not exist, or belongs to a different organization.

get/api/v1/orgs/{org}/applications/{clientId}
Request samples
Response samples
application/json
{
  • "id": "f4a3e291-7682-4148-89c0-be3a8f17eb23",
  • "name": "My Data Portal",
  • "description": "Customer-facing data portal for project ACME-PROD.",
  • "allowedOrigins": [],
  • "projectNames": [
    • "publicdata"
    ],
  • "createdTime": 1730204346000,
  • "lastUpdatedTime": 1730204346000
}