curl --request POST \
--url https://api.yertle.com/orgs/{org_id}/members \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"role": "editor"
}
'{
"message": "<string>"
}Add an existing user to the organization with a specific role.
The invoker must be an owner of the organization. The target
user_id must already exist in Yertle — this endpoint does not
create users (use the /invitations/accept flow for that). To add
someone by email instead, issue an invite link.
Role must be one of owner, editor, or viewer.
curl --request POST \
--url https://api.yertle.com/orgs/{org_id}/members \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"role": "editor"
}
'{
"message": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.yertle.com/llms.txt
Use this file to discover all available pages before exploring further.
Successful Response
Minimal response carrying a human-readable message.
Human-readable status message