Skip to content

Return List Of Attachments On The Given Profile

Request

Gets a list of attachments on the given profile ordered by modified date.

Security
bearerToken
Path
profileIdstring, (uuid)required

id of the profile

Query
pageinteger, (int32)

The page number to fetch. Should be a positive integer.

pageSizeinteger

Specifies the number of items to be displayed per page. Allowed values are between 1 and 100.

curl -i -X GET \
  'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/attachments?page=0&pageSize=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
totalSizeinteger, (int32)
itemsArray of objects(KycProtectProfileGetAttachmentResponse)
Response
{ "totalSize": 0, "items": [ {} ] }