Create User

POST Create user

https://fuspay-kyc-prod-e9eb4fd3aa33.herokuapp.com/api/v1/


Request Body

{
  "email": "[email protected]",
  "phone": "2348113372866",
  "app": "667abbbe4f0d680f9ce45174",
  "country": "NG",
  "user_ref": "USR_05437b08-198b-4e56-a06b-b66e328c31a1"
}

Example Request

curl --location 'http://localhost:8009/api/v1/modular/user/' \
--data-raw '{
    "email": "[email protected]",
    "phone": "2348113372866",
    "app": "667abbbe4f0d680f9ce45174",
    "country": "NG",
    "user_ref": "USR_05437b08-198b-4e56-a06b-b66e328c31a1"
}'

201 CreatedExample Response

  • Body
  • Header (21)
{
  "customer_id": "6968923e006455277cf86d21",
  "user_ref": "USR_05437b08-198b-4e56-a06b-b66e328c31a1",
  "message": "User created successfully"
}

Did this page help you?