Teams Members: Retrieve All

This documentation entry provides a comprehensive guide to using the "Retrieve All" teams members endpoint, including all relevant details about the request, response, and data structures.

Endpoint

GET /api/teams-member/

Retrieve a list of all members across all teams within your organization.

Request

HTTP Request

GET https://uptimekeep.com/api/teams-member/

Headers

Header
Type
Description

Authorization

String

Bearer token for API authentication.

Query Parameters

Parameter
Type
Description
Default Value

page

Integer

(Optional) The page number to retrieve.

1

results_per_page

Integer

(Optional) Number of results per page. Allowed values: 10, 25, 50, 100, 250, 500, 1000.

25

Example of a request:

curl --request GET \
--url 'https://uptimekeep.com/api/teams-member/' \
--header 'Authorization: Bearer {api_key}'

Response

A successful response returns a JSON object with the list of team members across all teams and associated metadata.

Response Example

Fields

Data Object

Field
Type
Description

id

Integer

Unique identifier for the team member.

access

Object

Access permissions for the team member (read, create, update, delete).

status

Integer

Status of the team member (e.g., active, inactive).

last_datetime

String

Timestamp of the last activity by the team member (in YYYY-MM-DD HH:MM:SS format).

datetime

String

Timestamp when the team member was added (in YYYY-MM-DD HH:MM:SS format).

team_id

Integer

Unique identifier for the team to which the member belongs.

name

String

Name of the team.

Access Object

Field
Type
Description

read

Boolean

Indicates if the member has read access.

create

Boolean

Indicates if the member has create access.

update

Boolean

Indicates if the member has update access.

delete

Boolean

Indicates if the member has delete access.

Meta Object

Field
Type
Description

page

Integer

Current page number of the results.

results_per_page

Integer

Number of results per page.

total

Integer

Total number of team members.

total_pages

Integer

Total number of pages available based on the current query.

Links Object

Field
Type
Description

first

String

URL of the first page of results.

last

String

URL of the last page of results.

next

String

URL of the next page of results (if applicable).

prev

String

URL of the previous page of results (if applicable).

self

String

URL of the current page of results.

Errors

If the request fails, the API will return an error message with an appropriate HTTP status code.

Last updated