Organization Knocks

List organization knocks

get
/memberships/orgs/{organisationId}/knocks

Gets the list of all knock requests for the specified organization

Path parameters
organisationIdstring · uuidRequired

Unique ID of the organization

Example: 123e4567-e89b-12d3-a456-426614174000
Query parameters
pageinteger · min: 1Optional

Page number for pagination

Default: 1Example: 1
limitinteger · min: 1 · max: 100Optional

Number of items per page

Default: 20Example: 20
statusstring · enumOptional

Filter by knock status

Example: pendingPossible values:
typestring · enumOptional

Filter by knock type

Example: memberPossible values:
Responses
200

List of knocks retrieved successfully

application/json
get
/memberships/orgs/{organisationId}/knocks

Create a knock request

post
/memberships/orgs/{organisationId}/knocks

Creates a new knock request to join the organization, collective, or team

Path parameters
organisationIdstring · uuidRequired

Unique ID of the organization

Example: 123e4567-e89b-12d3-a456-426614174000
Body
typestring · enumRequired

Type of knock request

Example: memberPossible values:
requesterEmailstring · emailRequired

Email of the person making the knock request

Example: jane.doe@example.com
Responses
post
/memberships/orgs/{organisationId}/knocks

Get knock information

get
/memberships/orgs/{organisationId}/knocks/{knockId}

Gets the information of a specific knock request

Path parameters
organisationIdstring · uuidRequired

Unique ID of the organization

Example: 123e4567-e89b-12d3-a456-426614174000
knockIdstring · uuidRequired

Unique ID of the knock

Example: knock123-def6-7890-abcd-ef1234567890
Responses
200

Knock information retrieved successfully

application/json
get
/memberships/orgs/{organisationId}/knocks/{knockId}

Update knock information

put
/memberships/orgs/{organisationId}/knocks/{knockId}

Updates the information of a specific knock request (only pending knocks)

Path parameters
organisationIdstring · uuidRequired

Unique ID of the organization

Example: 123e4567-e89b-12d3-a456-426614174000
knockIdstring · uuidRequired

Unique ID of the knock

Example: knock123-def6-7890-abcd-ef1234567890
Body
Responses
200

Knock updated successfully

application/json
put
/memberships/orgs/{organisationId}/knocks/{knockId}

Cancel a knock request

delete
/memberships/orgs/{organisationId}/knocks/{knockId}

Cancels a specific knock request (only pending knocks)

Path parameters
organisationIdstring · uuidRequired

Unique ID of the organization

Example: 123e4567-e89b-12d3-a456-426614174000
knockIdstring · uuidRequired

Unique ID of the knock to cancel

Example: knock123-def6-7890-abcd-ef1234567890
Responses
200

Knock cancelled successfully

application/json
delete
/memberships/orgs/{organisationId}/knocks/{knockId}

Last updated