Membership Requests

Used to interact with the members of an organization. The current user must be an administrator to access them.

Get Organization Membership Requests

Retrieve a list of all membership requests of an organization.

The current user must have permissions to manage the members of the organization.

SecurityNone or DevBrowser or ProductionBrowser or ProductionNativeApp and ProductionNativeFlag)
Request
path Parameters
organization_id
required
string

The organization ID.

query Parameters
limit
number
offset
number
status
string
Responses
200

Returns the response for Client wrapped OrganizationMembershipRequest objects.

401

Request was not successful

403

Request was not successful

422

Request was not successful

get/v1/organizations/{organization_id}/membership_requests
Response samples
application/json
{
  • "response": {
    },
  • "client": {
    }
}

Accept Organization Membership Request

Accepts an organization membership request.

The current user must have permissions to manage the members of the organization.

SecurityNone or DevBrowser or ProductionBrowser or ProductionNativeApp and ProductionNativeFlag)
Request
path Parameters
organization_id
required
string

The organization ID.

request_id
required
string

The request ID.

Responses
200

Returns the response for Client wrapped OrganizationMembershipRequest object.

400

Request was not successful

401

Request was not successful

403

Request was not successful

404

Request was not successful

422

Request was not successful

post/v1/organizations/{organization_id}/membership_requests/{request_id}/accept
Response samples
application/json
{
  • "response": {
    },
  • "client": {
    }
}

Reject Organization Membership Request

Rejects an organization membership request

The current user must have permissions to manage the members of the organization.

SecurityNone or DevBrowser or ProductionBrowser or ProductionNativeApp and ProductionNativeFlag)
Request
path Parameters
organization_id
required
string

The organization ID.

request_id
required
string

The request ID.

Responses
200

Returns the response for Client wrapped OrganizationMembershipRequest object.

401

Request was not successful

403

Request was not successful

404

Request was not successful

422

Request was not successful

post/v1/organizations/{organization_id}/membership_requests/{request_id}/reject
Response samples
application/json
{
  • "response": {
    },
  • "client": {
    }
}