Creates an address for the given profileId. Returns the created address information.
Security
bearerToken
The building details of the address being created. Must have a maximum length of 250 characters.
The street of the address being created. Must have a maximum length of 250 characters.
The city of the address being created. Must have a maximum length of 250 characters.
The region of the address being created. Must have a maximum length of 250 characters.
The postal code of the address being created. Must have a maximum length of 50 characters.
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/details/addresses
- Production serverhttps://connect.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/details/addresses
curl -i -X POST \
'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/details/addresses' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"type": "registered",
"buildingDetails": "string",
"street": "string",
"city": "string",
"region": "string",
"postalCode": "string",
"countryCode": "string",
"description": "string"
}'Created
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "buildingDetails": "string", "street": "string", "city": "string", "region": "string", "postalCode": "string", "countryCode": "string", "type": "string", "description": "string", "createdAt": "2019-08-24T14:15:22Z", "createdById": 0, "createdBy": "string", "modifiedAt": "2019-08-24T14:15:22Z", "modifiedById": 0, "modifiedBy": "string" }