Retrieve records by service
Contributors
Suggest changes
GET /audit/{accountId}/{service}/{requestId}/records
Retrieves specified records by account, service, and request ID.
Token usage: BlueXP user token.
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
accountId |
string |
path |
True |
|
service |
string |
path |
True |
|
requestId |
string |
path |
True |
Response
Status: 200,
List of GetAuditRecordResDto
Definitions
See Definitions
GetAuditRecordResDto
Name | Type | Required | Description |
---|---|---|---|
creationTime |
number |
True |
Creation time of the record. Unix epoch in milliseconds. |
action |
string |
False |
Action name of the event. |
status |
string |
True |
Status of the operation. |
data |
string |
False |
Any optional data of the record. String value can be stringified JSON. |
errors |
array[string] |
False |
Array of error message/s if exists. that related to this auditRecord |
recordId |
number |
True |
Record id - is unique per requestId per service. |