curl --request POST \
--url https://api.provident.ae/v2/apps/geniemap/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "<string>",
"password": "<string>",
"phone": "<string>",
"avatarId": "<string>"
}
'{
"statusCode": 401,
"message": "Missing authorization header",
"error": "Unauthorized"
}curl --request POST \
--url https://api.provident.ae/v2/apps/geniemap/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "<string>",
"password": "<string>",
"phone": "<string>",
"avatarId": "<string>"
}
'{
"statusCode": 401,
"message": "Missing authorization header",
"error": "Unauthorized"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.