POST
/
profiles
/
addresses
curl --request POST \
  --url https://api.live.paisr.tech/{version}/profiles/addresses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "address_line_1": "Example Street 10",
  "address_line_2": "Example Street 12",
  "address_line_3": "Example Street 14",
  "city": "Paramaribo",
  "state": "<string>",
  "apartment": "<string>"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
The details required to create a profile address.
address_line_1
string
required

Registered address as it appears on documents or utility bills.

Example:

"Example Street 10"

city
string
required

Registered city as it appears on documents or utility bills.

Example:

"Paramaribo"

address_line_2
string

Registered address as it appears on documents or utility bills.

Example:

"Example Street 12"

address_line_3
string

Registered address as it appears on documents or utility bills.

Example:

"Example Street 14"

state
string

Registered state as it appears on documents or utility bills.

apartment
string

Registered apartment no as it appears on documents or utility bills.

Response

200
application/json
Successfully created profile address.
success
boolean
default:true

Indicates if the request was successful.

data
object