Read Visit Customer Logos

Endpoint

GET /api/v3/visits/{visitId}/customerLogos


Description

Retrieves the customer logos associated with a specific visit. This can be used to display branding or customer references linked to the visit record.

Authentication Required: Yes — Bearer Token


URL Parameters

Name Type Required Description
visitId integer/string Yes The unique identifier of the visit.

Query Parameters

This endpoint does not support query parameters.


Request Body

This endpoint does not accept a request body.


Example Request

GET https://api.briefingedge.com/api/v3/visits/7890/customerLogos Authorization: Bearer <token>  

Success Response

Code: 200 OK

Content: An array of logo metadata or image objects.

Example:

[  {    "LogoId": 101,    "FileName": "customer_logo.png",    "Url": "https://cdn.briefingedge.com/logos/customer_logo.png",    "UploadedDate": "2025-09-15T12:00:00Z",    "UploadedBy": "jdoe@example.com"  },  {    "LogoId": 102,    "FileName": "partner_logo.jpg",    "Url": "https://cdn.briefingedge.com/logos/partner_logo.jpg",    "UploadedDate": "2025-09-16T09:30:00Z",    "UploadedBy": "asmith@example.com"  } ]  

Error Responses

Code Message
401 Unauthorized
404 Not Found
500 Internal Server Error