v13

latestOpenAPI 3.0.32026-07-31359869.4 MB
teams

Get access request status

Check the status of a join request. It'll respond with a 404 if the request has been declined. If no userId path segment was provided, this endpoint will instead return the status of the authenticated user.

get/v1/teams/{teamId}/request/{userId}

Path parameters

userIdstring required

The unique user identifier

teamIdstring required

The unique team identifier

Example:team_1a2b3c4d5e6f7g8h9i0j1k2l

Response

Successfully

teamSlugstring required

The slug of the team.

teamNamestring required

The name of the team.

confirmedfalse | true required

Current status of the membership. Will be true if confirmed, if pending it'll be false.

accessRequestedAtnumber required

Timestamp in milliseconds when the user requested access to the team.

Example response

{
  "teamSlug": "my-team",
  "teamName": "My Team",
  "accessRequestedAt": 1588720733602
}