GET
/
iam
/
users
/
v1
curl --request GET \
  --url https://api.mottostreaming.com/iam/users/v1 \
  --header 'Authorization: Bearer <token>'
{
  "users": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "given_name": "<string>",
      "family_name": "<string>",
      "email": "<string>",
      "phone_number": "<string>",
      "profile_image_url": "<string>",
      "role": "ROLE_UNSPECIFIED"
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page_token
string
project_id
string
filter
string

Filter the result-set by properties using a subset of the Kibana Query Language.

order_by
string

Specifies the result ordering for List requests. Supported values are:

  • "email asc|desc"
page_size
integer

Response

200
application/json
OK
users
object[]

A user represents someone that wants to identify themselves within the Motto Content Delivery API. Important: not to be confused with Account which is an account of the Motto Studio API.

next_page_token
string