Adds a member to the organization

POST /organizations/{org-slug}/members

Adds a member to the organization

Path parameters

  • org-slug string Required

    organization slug

Body Required

member data

  • email string

Responses

  • 201

    Created

    Hide response attributes Show response attributes object
    • email string
    • slug string
    • username string
  • 401

    Unauthorized

    Hide response attribute Show response attribute object
    • error_msg string
  • 403

    Forbidden

    Hide response attribute Show response attribute object
    • error_msg string
  • 404

    Not found

    Hide response attribute Show response attribute object
    • error_msg string
POST /organizations/{org-slug}/members
curl \
 --request POST 'https://api.bitrise.io/v0.1/organizations/{org-slug}/members' \
 --header "Authorization: $API_KEY" \
 --data '{"email":"string"}'
Request examples
{
  "email": "string"
}
Response examples (201)
{
  "email": "string",
  "slug": "string",
  "username": "string"
}
Response examples (401)
{
  "error_msg": "string"
}
Response examples (403)
{
  "error_msg": "string"
}
Response examples (404)
{
  "error_msg": "string"
}