Get Compliance Profiles
By calling this operation, you can get a comprehensive list of all Compliance profiles of a client, or you can focus on retrieving details of a specific profileby its unique ID.
This page will guide you trough the process of using these operations:
- Retrieve All Profiles
- Retrieve Specific Profile
The following sections will describe them in more detail.
Encrypted Requests
All requests into the stack are performed using the Encrypted Endpoint, where the request and response of the operation are encrypted. See How to Integrate Fondy API to learn how to encrypt your operations and send them through the endpoint.
Retrieve All Identities
To retrieve a list of all profiles under a client follow the steps below:
- Follow the steps in How to Integrate Fondy API to learn how to encrypt your request into the stack.
- Send the encrypted operation using Encrypted Endpoint. See an example in the code block below:
{ "encrypted_payload": null, "encrypted_user": ENCRYPTED(<username>), "encrypted_url": ENCRYPTED("/onboarding/compliance/profile"), "method": "GET" }
Response
A succesful request will return the encrypted response, as in the code block below:
{
"encrypted_payload": ENCRYPTED(profiles)
"encrypted_url": null
"method": null
}
This response has to be decrypted with the process explained in How to Integrate Fondy API. Once you decrypt it, the unencrypted payload is as follows:
[
{
"profile_type": "SOLETRADER",
"full_name": "string",
"external_url_validation": "string",
"client_ref": "f8605015-90ac-4450-bb99-cbb1591bce7a",
"type_of_compliance": "EXTERNAL_FULL",
"external_id": "ExampleRefId_43971e26-61b1-420b-9add-c510d44a354f",
"telephone": "string",
"id": "f8605015-90ac-4450-bb99-cbb1591bce7a",
"created_date": "2020-01-22T13:15:30.000Z",
"email": "string",
"linked_identities": [
"f8605015-90ac-4450-bb99-cbb1591bce7a"
],
"status": null
}
]
The parameters for each profile are the same received in the response of the Create Compliance Profile operation.
Retrieve Specific Identity
To retrieve information of a specific profile under a client follow the steps below:
- Follow the steps in How to Integrate Fondy API to encrypt your request into the stack.
- Send the encrypted operation using Encrypted Endpoint. See an example in the code block below:
{ "encrypted_payload": null, "encrypted_user": ENCRYPTED(<username>), "encrypted_url": ENCRYPTED("/onboarding/compliance/profile/{complianceId}"), "method": "GET" }
Path Params
Change the following in the
encrypted_url
- Change
{complianceId}
with the ID of the Identity to retrieve the details from.
Response
A succesful request will return the encrypted response, as in the code block below:
{
"encrypted_payload": ENCRYPTED(profile)
"encrypted_url": null
"method": null
}
This response has to be decrypted with the process explained in How to Integrate Fondy API. Once you decrypt it, the unencrypted payload is as follows:
{
"profile_type": "SOLETRADER",
"full_name": "string",
"external_url_validation": "string",
"client_ref": "f8605015-90ac-4450-bb99-cbb1591bce7a",
"type_of_compliance": "EXTERNAL_FULL",
"external_id": "ExampleRefId_43971e26-61b1-420b-9add-c510d44a354f",
"telephone": "string",
"id": "f8605015-90ac-4450-bb99-cbb1591bce7a",
"created_date": "2020-01-22T13:15:30.000Z",
"email": "string",
"linked_identities": [
"f8605015-90ac-4450-bb99-cbb1591bce7a"
],
"status": null
}
The parameters for each profile are the same received in the response of the Create Compliance Profile operation.
Updated 22 days ago