Retrieve a list of team members

GET {{url}}/api/1.0/team-members

Request Params

KeyDatatypeRequiredDescription
created_beforestringRetrieves team members with created_at < created_before. The default value is the current date and time at which you are calling the endpoint.

Provided in ISO 8601 format. | | limit | number | | The maximum number of team members returned per page.

To get to the next page, make a new request and use the created_at date of the last team member returned in the previous response as the value for created_before. |

RESPONSES

status: OK

[{&quot;email&quot;:&quot;john.doe@example.com&quot;,&quot;id&quot;:&quot;76969b71-a123-42dc-b874-a34688d7bba4&quot;,&quot;role_id&quot;:&quot;OWNER&quot;,&quot;state&quot;:&quot;active&quot;,&quot;first_name&quot;:&quot;John&quot;,&quot;last_name&quot;:&quot;Doe&quot;,&quot;created_at&quot;:&quot;2022-09-07T09:19:31.592368Z&quot;,&quot;updated_at&quot;:&quot;2022-09-07T09:21:24.346670Z&quot;},{&quot;email&quot;:&quot;john.smith@example.com&quot;,&quot;id&quot;:&quot;168922e1-594f-4ca0-93b2-56b742f3936b&quot;,&quot;role_id&quot;:&quot;024abb3d-06da-4701-9254-dfcc3da38385&quot;,&quot;state&quot;:&quot;active&quot;,&quot;created_at&quot;:&quot;2022-09-07T09:19:32.592368Z&quot;,&quot;updated_at&quot;:&quot;2022-09-07T09:21:25.346670Z&quot;}]