Skip to main content
PUT
/
v1
/
identities
/
{id}
/
documents
Upload a Document
curl --request PUT \
  --url https://sandbox-api.borderless.xyz/v1/identities/{id}/documents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "issuingCountry": "US",
  "type": "Passport",
  "issuedDate": "2003-01-01",
  "idNumber": "123456789",
  "expiryDate": "2003-01-01",
  "imageFront": "data:image/jpeg;base64,/9j/4AAQSkZJRg...",
  "imageBack": "data:image/jpeg;base64,/9j/4AAQSkZJRg..."
}
'
{
  "id": "<string>",
  "type": "Personal",
  "status": "Active",
  "suspensionReason": "<string>",
  "deleted": true,
  "hasComplianceChecks": true,
  "data": {
    "firstName": "<string>",
    "lastName": "<string>",
    "secondLastName": "<string>",
    "middleName": "<string>",
    "taxId": "<string>",
    "dateOfBirth": "YYYY-MM-DD",
    "email": "<string>",
    "phone": "<string>",
    "activity": "<string>",
    "sex": "Male",
    "address": {
      "id": "<string>",
      "street1": "<string>",
      "street2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "country": "AF",
      "postalCode": "<string>"
    },
    "documents": [
      {
        "id": "<string>",
        "issuingCountry": "AF",
        "type": "Passport",
        "idNumber": "<string>",
        "issuedDate": "YYYY-MM-DD",
        "expiryDate": "YYYY-MM-DD"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
issuingCountry
enum<string>
required

The country code of the issuing country in ISO-3166-2 format. See ISO-3166-2 documentation.

Available options:
AF,
AL,
DZ,
AS,
AD,
AO,
AI,
AQ,
AG,
AR,
AM,
AW,
AU,
AT,
AZ,
BS,
BH,
BD,
BB,
BY,
BE,
BZ,
BJ,
BM,
BT,
BO,
BQ,
BA,
BW,
BV,
BR,
IO,
BN,
BG,
BF,
BI,
CV,
KH,
CM,
CA,
KY,
CF,
TD,
CL,
CN,
CX,
CC,
CO,
KM,
CD,
CG,
CK,
CR,
HR,
CU,
CW,
CY,
CZ,
CI,
DK,
DJ,
DM,
DO,
EC,
EG,
SV,
GQ,
ER,
EE,
SZ,
ET,
FK,
FO,
FJ,
FI,
FR,
GF,
PF,
TF,
GA,
GM,
GE,
DE,
GH,
GI,
GR,
GL,
GD,
GP,
GU,
GT,
GG,
GN,
GW,
GY,
HT,
HM,
VA,
HN,
HK,
HU,
IS,
IN,
ID,
IR,
IQ,
IE,
IM,
IL,
IT,
JM,
JP,
JE,
JO,
KZ,
KE,
KI,
KP,
KR,
KW,
KG,
LA,
LV,
LB,
LS,
LR,
LY,
LI,
LT,
LU,
MO,
MG,
MW,
MY,
MV,
ML,
MT,
MH,
MQ,
MR,
MU,
YT,
MX,
FM,
MD,
MC,
MN,
ME,
MS,
MA,
MZ,
MM,
NA,
NR,
NP,
NL,
NC,
NZ,
NI,
NE,
NG,
NU,
NF,
MP,
NO,
OM,
PK,
PW,
PS,
PA,
PG,
PY,
PE,
PH,
PN,
PL,
PT,
PR,
QA,
MK,
RO,
RU,
RW,
RE,
BL,
SH,
KN,
LC,
MF,
PM,
VC,
WS,
SM,
ST,
SA,
SN,
RS,
SC,
SL,
SG,
SX,
SK,
SI,
SB,
SO,
ZA,
GS,
SS,
ES,
LK,
SD,
SR,
SJ,
SE,
CH,
SY,
TW,
TJ,
TZ,
TH,
TL,
TG,
TK,
TO,
TT,
TN,
TR,
TM,
TC,
TV,
UG,
UA,
AE,
GB,
UM,
US,
UY,
UZ,
VU,
VE,
VN,
VG,
VI,
WF,
EH,
YE,
ZM,
ZW,
AX
Example:

"US"

type
enum<string>
required

The type of identity document. Not all types are supported in every region; refer to the Business documents for region-specific requirements; refer to the Personal documents for region-specific requirements.

Available options:
Passport,
DriverLicense,
NationalId,
ResidencePermit,
Formation,
Ownership,
ProofOfAddress
Example:

"Passport"

issuedDate
string<date>
required

The date the document was issued in format yyyy-mm-dd

Example:

"2003-01-01"

idNumber
string

The document identification number, if applicable

Required string length: 3 - 20
Example:

"123456789"

expiryDate
string<date>

The date the document expires in format yyyy-mm-dd, if applicable

Example:

"2003-01-01"

imageFront
file

The front side of the document in Base64 format. Supported MIME types (application/pdf, image/jpeg, image/jpg, image/png, image/heic, image/tiff). Minimum resolution: 200x200px, maximum size: 5MB. Refer to the Business documents for region-specific requirements; refer to the Personal documents for region-specific requirements.

Example:

"data:image/jpeg;base64,/9j/4AAQSkZJRg..."

imageBack
file

The back side of the document in Base64 format, if applicable. Supported MIME types (application/pdf, image/jpeg, image/jpg, image/png, image/heic, image/tiff). Minimum resolution: 200x200px, maximum size: 5MB. Refer to the Business documents for region-specific requirements; refer to the Personal documents for region-specific requirements.

Example:

"data:image/jpeg;base64,/9j/4AAQSkZJRg..."

Response

200 - application/json

Identity data

id
string
required
type
enum<string>
required
Available options:
Personal,
Business
status
enum<string>
required
Available options:
Active,
Inactive,
Suspended
suspensionReason
string | null
required
deleted
boolean
required
hasComplianceChecks
boolean
required
data
object
required
  • Option 1
  • Option 2