Get a specific user

GET /user

This endpoint retrieves a specific user in your team. You can search by user ID or by email.

Query parameters

  • id string

    Use this parameter if you want to search by user ID.

  • email string

    Use this parameter if you want to search a user by email.

Responses

  • 200 application/json

    A specific user.

    Hide response attributes Show response attributes object
  • 400

    Bad Request -- Your request is invalid.

  • 401

    Unauthorized -- Your API key is wrong.

  • 403

    Forbidden -- The object requested is hidden for administrators only.

  • 404

    Not Found -- The specified object could not be found.

  • 429

    Too Many Requests -- You're requesting too many objects! Slow down!

  • 500

    Internal Server Error -- We had a problem with our server. Try again later.

  • 503

    Service Unavailable -- We're temporarily offline for maintenance. Please try again later.

GET /user
curl \
 -X GET https://api.usecollect.com/v1/user \
 --user "username:password"
Response examples (200)
{
  "_id": "upKywNKgwyHx3hKfF",
  "role": "admin",
  "status": "active",
  "email": "johndoe@example.com",
  "firstName": "John",
  "lastName": "Doe"
}