V2: Customer Logos (Get)
Description
This endpoint retrieves a list of customer logos. It is designed to provide applications with the visual branding associated with registered customers.
HTTP Method
get
URL
/api/v2/visits/{visitID}/customersLogos
Path Parameters
|
Name |
Type |
|---|---|
| visitID | required <integer> |
Response
[
{
"CustomerID": "<integer>",
"Name": "<string>",
"AccountID": "<string>",
"FileType": "<string>",
"S3Path": "<string>",
"Logo": "<string>",
"LogoUrl": "<string>",
"LogoPreviewUrl": "<string>",
"UpdatedAt": "<dateTime>"
}
]
Example
[
{
"CustomerID": 12345,
"Name": "Acme Corp",
"AccountID": "875444",
"FileType": "jpg",
"S3Path": "s3://bucket-name/documents/acme-corp-profile.jpg",
"Logo": "acme-logo.png",
"LogoUrl": "https://example.com/logos/acme-logo.png",
"LogoPreviewUrl": "https://example.com/logos/preview/acme-logo.png",
"UpdatedAt": "2024-09-19T12:34:56Z"
}
]
Success Response
Code: 200 OK