# Confirm New Account After the user receives a confirmation email. This link should open the app, and pass the included token to this User Confirmation GET request. A successful response means that the account associated with the token/email is now confirmed, and can be used for OOB or view network as a member. Note: This is NOT the same token as was returned by the #endpoint:u8SLn5ebDpLA96m7B endpoint. They are both jwt tokens with the same format but they have different token audience, expiry and payload data. Endpoint: GET /confirmations Security: Authorization ## Query parameters: - `token` (string, required) ## Response 200 fields (application/json): - `id` (integer) - `email` (string) - `first_name` (string) - `last_name` (string) - `username` (string) - `confirmed_at` (string,null) - `created_at` (string) - `updated_at` (string) ## Response 401 fields (application/json): - `error` (string)