GET v1/Delivery/Repositories/{repositoryId}/Logs/Subscriptions
User roles allowed to make this request:
DomainAdministrator
RepositoryManager
Permissions required to make this request:
Repository.Read
Gets repository subscription logs. Returns first 100. This list can be filtered, sorted and supports paging using standard OData syntax
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
repositoryId |
The repository id. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The subscription logs.
Response Message
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "PlanId": 1, "PlanName": "sample string 2", "StartedAt": "2024-09-07T17:18:01.658814+00:00", "EndedAt": "2024-09-07T17:18:01.658814+00:00", "Username": "sample string 4" }, { "PlanId": 1, "PlanName": "sample string 2", "StartedAt": "2024-09-07T17:18:01.658814+00:00", "EndedAt": "2024-09-07T17:18:01.658814+00:00", "Username": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfRepositorySubscriptionLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NipoSoftware.Nfield.Manager.Api.Models.Delivery"> <RepositorySubscriptionLogModel> <EndedAt>2024-09-07T17:18:01.658814+00:00</EndedAt> <PlanId>1</PlanId> <PlanName>sample string 2</PlanName> <StartedAt>2024-09-07T17:18:01.658814+00:00</StartedAt> <Username>sample string 4</Username> </RepositorySubscriptionLogModel> <RepositorySubscriptionLogModel> <EndedAt>2024-09-07T17:18:01.658814+00:00</EndedAt> <PlanId>1</PlanId> <PlanName>sample string 2</PlanName> <StartedAt>2024-09-07T17:18:01.658814+00:00</StartedAt> <Username>sample string 4</Username> </RepositorySubscriptionLogModel> </ArrayOfRepositorySubscriptionLogModel>