Skip to main content
POST
/
orgs
/
{org_id}
/
members
Add Member
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.

Headers

authorization
string | null

Path Parameters

org_id
string
required

Body

application/json

Request model for adding a member to organization.

user_id
string
required

User ID to add

role
enum<string>
default:editor

Member role

Available options:
owner,
editor,
viewer

Response

Successful Response

Minimal response carrying a human-readable message.

message
string
required

Human-readable status message