Users

List

GET https://threads.com/api/public/useres

List the members of your organization

Headers

Example Request

curl \
  -H "Authorization: Bearer ABcD-ur5d6WK5lWZFKF3cKwp" \
  -H "Content-Type: application/json" \
  -X GET https://threads.com/api/public/users

Example Response

{
    "ok": true,
    "result":
    [
        {
            "userID": "32454348425",
            "name": "Philip Fry",
            "email": "philip@myorg.com"
        },
        {
            "userID": "32454344821",
            "name": "Turanga Leela",
            "email": "leela@myorg.com"
        },
        {
            "userID": "32454484427",
            "name": "Bender Bending Rodríguez",
            "email": "bender@myorg.com"
        }
    ]
}