Skip to content

Retrieve an organization

Method

GET https://papi.afi.ai/api/v1/orgs/{id}

Description

Retrieves organization object by its ID.

Path params
id string required

ID of the organization to retrieve.

curl -X GET \
    -H 'Authorization: {api-key}' \
    https://papi.afi.ai/api/v1/orgs/{id}

Successful response (200) schema
object

Org describes organization object.

id string

Unique ID of the organization.

name string

Organization name.

Response example
{
  "id": "string",
  "name": "string"
}