Skip to main content
POST
/
orgs
/
{orgId}
/
memberships
Add user to an organization
curl --request POST \
  --url https://api.withampersand.com/v1/orgs/{orgId}/memberships \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "builderId": "builder-id-123"
}'
This response does not have an example.

Authorizations

X-Api-Key
string
header
required

Path Parameters

orgId
string
required

ID of the organization.

Body

application/json
builderId
string
required

The ID of the builder to add to the organization

Example:

"builder-id-123"

Response

User successfully added to organization

I