POST
/
api
/
admin
/
users
curl --request POST \
  --url http://localhost:3001/api/admin/users/ \
  --header 'Content-Type: application/json' \
  --data '{
  "cursor": "<string>",
  "segmentFilter": [
    "<string>"
  ],
  "limit": 123,
  "direction": "after",
  "userIds": [
    "1043"
  ],
  "subscriptionGroupFilter": [
    "<string>"
  ],
  "userPropertyFilter": [
    {
      "id": "<string>",
      "values": [
        "<string>"
      ]
    }
  ],
  "workspaceId": "<string>"
}'
{
  "users": [
    {
      "id": "<string>",
      "properties": {},
      "segments": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ]
    }
  ],
  "previousCursor": "<string>",
  "nextCursor": "<string>",
  "userCount": 0
}

Body

application/json

Response

200
application/json
Default Response

The response is of type object.