(POST) Create Customer

Creates a customer and associates his KYC, financial, and personal information with an ID.

POST /Customer

Creates a customer record in the Fuap partner system. This record will be associated with a customer’s KYC verification, loan request/records, credit and financial data and linked payment methods.

Headers

Name
Value

API Key

Bearer <token>

API Secret

Bearer <token>

Request Body

Key

Type

Required

Description

Example Value

email

string

true

Email address of the customer

phoneNumber

string

true

Phone number (with country code) of the customer

+15555555555

type

string

true

Indicates whether this is a business or individual customer

INDIVIDUAL, BUSINESS


Success Response Body

Field

Type

Description

Example Value

customerId

UUID

Unique identifier of customer in Fuap loan system

3f020d62-6cef-4f2c-87e4-b096abc5cac9

createdAt

datetime

Timestamp that customer was created

2023-05-24T17:58:34.254Z

Response

{
  "customerId": 3f020d62-6cef-4f2c-87ed-b096abc5cac9,
  "createdAt": 2023-05-24T17:58:34.254Z
}

Last updated