Skip to main content
GET
/
api
/
app
/
{app_id}
Get app by ID
curl --request GET \
  --url https://api.example.com/api/app/{app_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "app_name": "<string>",
  "created_date": "<unknown>",
  "updated_date": "<unknown>",
  "created_by": "<string>",
  "updated_by": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

app_id
string<uuid>
required

Response

App retrieved successfully

Response model for app details.

id
string<uuid>
required

Unique ID of the app.

app_name
string
required

Name of the app.

created_date
any
required

Timestamp when the app was created.

updated_date
any
required

Timestamp when the app was last updated.

created_by
string | null

Username of the creator.

updated_by
string | null

Username of the last updater.