User ID List API

Fetch every user_id stored in the app. The response carries the whole list. There is no paging.

{ "message": "success", "data": { "ids": ["u-10293", "u-10294"] } }

Use it to reconcile: compare the ids Miso holds against the ids your source holds now, then delete the difference with POST /v1/users/_delete.

Query Parameters
  • type
    Type: string

    Return only records with this type value. Omit it to return every record.

Responses
  • application/json
  • 401

    The API key is missing or wrong.

  • 422

    The request did not pass validation.

Request Example for get/v1/users/_ids
curl 'https://api.askmiso.com/v1/users/_ids?api_key=YOUR_SECRET_TOKEN'
{
  "message": "string",
  "data": {
    "ids": [
      "u-10293",
      "u-10294"
    ]
  }
}