Add organization application
Add an application to the organization.
Path parameters
-
id
string Required The unique identifier of the organization.
Body
Required
-
applicationIds
array[string] Required The application IDs to add.
Minimum length of each is
1
.
POST
/api/organizations/{id}/applications
curl \
--request POST 'https://[tenant_id].logto.app/api/organizations/{id}/applications' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"applicationIds":["string"]}'
Request examples
{
"applicationIds": [
"string"
]
}