Users

Create a new User account

Creates a new User account in the system. The email must be unique across all Users. Returns the created User object with all fields except the password. Note: If billingDetails are provided, ensure the countryCode is valid and postalCode is included for required countries.

Authorization

Public key Secret key
x-fngs-public-key<token>

In: header

x-fngs-secret-key<token>

In: header

Request Body

application/json

POST /v0/users/create Request body

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

POST
/v0/users/create
curl -X POST "https://example.com/v0/users/create" \  -H "Content-Type: application/json" \  -d '{    "email": "test@example.com"  }'
{  "status": "success",  "data": {    "user": {      "object": "user",      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "username": null,      "email": null,      "details": null,      "internalId": null    }  }}