Return typed audit trail for one readable board item.
using System.Net.Http.Headers;var client = new HttpClient();var request = new HttpRequestMessage{ Method = HttpMethod.Get, RequestUri = new Uri("https://example.com/api/workspace/boards/example/items/example/audit-trail"),};using (var response = await client.SendAsync(request)){ response.EnsureSuccessStatusCode(); var body = await response.Content.ReadAsStringAsync(); Console.WriteLine(body);}const url = 'https://example.com/api/workspace/boards/example/items/example/audit-trail';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/workspace/boards/example/items/example/audit-trailAuthorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Query Parameters
Section titled “Query Parameters”Optional access token for clients that cannot set Authorization headers. Prefer Authorization: Bearer <token> when possible.
Responses
Section titled “Responses”OK
object
Runtime board item audit row.
object
Runtime board item audit activity kind.
Payload for board item creation audit entries.
object
Payload for board item movement and reopen audit entries.
object
Payload for board-owned data changes.
object
Text field before/after value in board item audit.
object
Text field before/after value in board item audit.
object
Board data field before/after value in board item audit.
object
object
object
object
object
Payload for board process tag changes.
object
Tag snapshot used by board item audit.
object
Tag snapshot used by board item audit.
object
Tag snapshot used by board item audit.
object
Payload for board item responsibility assignment changes.
object
Responsibility subject snapshot used by board item audit.
object
Responsibility subject snapshot used by board item audit.
object
Payload for board item due-date changes.
object
Payload for board item link create and close audit entries.
object
Payload for board item cycle assignment audit entries.
object
Payload for board item removal audit entries.
object
object
object
object
object
Example
{ "Data": [ { "ActivityKind": 0, "ResponsibilitiesChanged": { "ResponsibilityKind": 0, "BeforeSubjects": [ { "SubjectType": 0 } ], "AfterSubjects": [ { "SubjectType": 0 } ] }, "ItemLinkChanged": { "LinkType": 0, "Direction": 0 } } ], "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Forbidden
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}Not Found
object
Runtime board item audit row.
object
Runtime board item audit activity kind.
Payload for board item creation audit entries.
object
Payload for board item movement and reopen audit entries.
object
Payload for board-owned data changes.
object
Text field before/after value in board item audit.
object
Text field before/after value in board item audit.
object
Board data field before/after value in board item audit.
object
object
object
object
object
Payload for board process tag changes.
object
Tag snapshot used by board item audit.
object
Tag snapshot used by board item audit.
object
Tag snapshot used by board item audit.
object
Payload for board item responsibility assignment changes.
object
Responsibility subject snapshot used by board item audit.
object
Responsibility subject snapshot used by board item audit.
object
Payload for board item due-date changes.
object
Payload for board item link create and close audit entries.
object
Payload for board item cycle assignment audit entries.
object
Payload for board item removal audit entries.
object
object
object
object
object
Example
{ "Data": [ { "ActivityKind": 0, "ResponsibilitiesChanged": { "ResponsibilityKind": 0, "BeforeSubjects": [ { "SubjectType": 0 } ], "AfterSubjects": [ { "SubjectType": 0 } ] }, "ItemLinkChanged": { "LinkType": 0, "Direction": 0 } } ], "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}