This is an API that allows you to retrieve a list of members belonging to any service.
This is the authentication key required for GET API requests.
Please enable the "Get Members (List/Detail)" permission in the Management API and include it in the request header when sending.

If the X-MICROCMS-API-KEY is identifiable, it may allow unauthorized manipulation of content by third parties. Please handle it with care. For more details, please refer to "API Key (API Authentication and Authorization Management)".
This is an example of the response for the member list when retrieved successfully.
{
"members": [
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"name": "test-member",
"email": "test@microcms.co.jp",
"mfa": true,
"inviting": false,
"lastAccessedAt": "2026-01-01T00:00:00.000Z"
},
{
...
}
],
"totalCount": 120,
"token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}The response includes the following data.
An array of members. Each member object contains the following data.
Invited members are not included in the response.
Value | Description |
|---|---|
| The member's ID. |
| The display name of the member. If not set, it will be an empty string ( |
| The member's email address. |
| Indicates whether two-factor authentication is enabled. ( |
| Indicates whether the member is being invited. ( |
| The last access date and time to the service management screen. (In ISO 8601 format UTC) ・If the service plan is not Enterprise |
The total number of members.
A token used for pagination. It is returned when there is a next page available.
By specifying this value in the query parameter token of the next request, you can retrieve the subsequent data.
Please specify the number of members to retrieve.
0-10010Please specify the token to be used for pagination.
By specifying the value of token included in the response in the next request, you can retrieve the subsequent data.