List attachment metadata for an entity
Request
Method: GET
Path: /api/attachments/entity/{entityGuid}
Authentication: Not required
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| entityGuid | string | path | Yes | |
| undefined | string | undefined | No |
Responses
200 - List
Examples
cURL
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:3000/api/attachments/entity/{entityGuid}
JavaScript
const response = await fetch('http://localhost:3000/api/attachments/entity/{entityGuid}', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
This documentation is automatically generated from the OpenAPI specification.