curl --location --request PUT 'https://devapi.immigraflow.com/v1/users/' \
--header 'X-API-KEY: <api-key>' \
--header 'X-API-SECRET: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "user@example.com",
"name": "string",
"phone": "string",
"status": "active",
"notify_by_email": true,
"notify_by_whatsapp": true
}'{
"success": true,
"message": "string",
"user": {
"id": 0,
"email": "user@example.com",
"name": "string",
"phone": "string",
"notify_by_email": true,
"notify_by_whatsapp": true,
"status": "active",
"created_at": "2019-08-24T14:15:22.123Z",
"updated_at": "2019-08-24T14:15:22.123Z"
}
}