Skip to main content

Add Users To Organization

PUT 

/api/v1/organizations/:organization_id/users

Add a user to an organization.

Request

Path Parameters

    organization_id uuidrequired

Cookie Parameters

    session any

Body

array

required

  • Array [

  • user_id

    object

    The user's ID.

    anyOf

    string

    email

    object

    The user's email address.

    anyOf

    string

  • ]

Responses

Successful Response

Schema

  • Array [

  • id uuidrequired

    Unique identifier

    created_at

    object

    Creation datetime

    anyOf

    string

    updated_at

    object

    Update datetime

    anyOf

    string

    email emailrequired

    The user's email address.

    user_id

    object

    The user's ID.

    anyOf

    string

    organization_id uuidrequired

    The organization's ID.

    pending Pending (boolean)

    Default value: true

    Whether the user's membership is pending account signup.

    invited_by_user_id

    object

    The user ID of the user who added the user to the organization.

    anyOf

    string

    invited_by_user_email

    object

    The email address of the user who added the user to the organization.

    anyOf

    string

  • ]

Loading...