Add an identity to an Environment (create EnvironmentMembership)
/portal/v1/accounts/{accountSlug}/identities/{id}/environment-membershipsCreates an active EnvironmentMembership attaching the Account-level identity to the named Environment, granting it sign-in access there. The Environment must belong to the same Account as the identity (404). Returns 409 when the identity is already an active member, 404 when the identity is unknown, and writes an env-tier audit row.
Authentication
AuthorizationJWT access token. Never send alongside X-API-Key: a request carrying both is refused.
identities.manageIdentitiesManage end-user identities across the account. Granted through an administrator role in the Admin Workspace; a valid token without it is refused with 403.
Path Parameters
idstring Required Request body
application/json
environment_idstring Required The Environment ID the identity should be attached to. Must belong to the same Account as the identity.
Responses
application/json
data *EnvMembershipResponseDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
Errors
When the request can't be completed, the response body includes a stable error code you can branch on.
account.capability_requiredForbiddenThe signed-in user's administrator roles do not grant the capability this endpoint requires.
Ask an account administrator to grant a role carrying the capability named in the Authentication section, then retry.
Returned object
curl -X POST "https://auth.canopy-io.com/portal/v1/accounts/{accountSlug}/identities/value/environment-memberships" \ -H "Authorization: Bearer $CANOPY_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "environment_id": "string" }'
{ "data": { "id": "string", "identity_id": "string", "environment_id": "string", "status": "invited", "invited_at": "2026-04-20T12:00:00.000Z", "activated_at": "2026-04-20T12:00:00.000Z", "deactivated_at": "2026-04-20T12:00:00.000Z", "created_at": "2026-04-20T12:00:00.000Z" } }
Tell us how we can improve this guide.