POST /user

This is a user asure endpoint to verify and check if the user_id and email is in the public.users table

// POST
https://api.suitsbooks.nl/user

// body
{
    "user_id": "c80131de-8641-4fd2-81b0-1a2829bb3175",
    "email": "floris.trades@gmail.com"
}

Example response

{
    "data": {
        "email": "floris.trades@gmail.com",
        "user_id": "c80131de-8641-4fd2-81b0-1a2829bb3175"
    },
    "message": "User assured successfully",
    "success": true
}
Updated on