Endpoints
Users

Users

🚧

The Testify API is still in alpha and is subject to change without notice. Please contact us if you have any questions.

GET /v1/user

Gets the current user.

Response Body

{
  user: {
    id: string;
    email: string;
    firstName: string;
    lastName: string;
  };
}

POST /v1/user

Updates the current user.

Request Body

{
  firstName?: string;
  lastName?: string;
}

Response Body

{
  user: {
    id: string;
    email: string;
    firstName: string;
    lastName: string;
  };
}