Skip to content

ListAuditLog

POST
/log/query
curl --request POST \
--url https://api.huddlesurety.co/log/query \
--header 'Content-Type: application/json' \
--data '{ "orgIDIn": [ "example" ], "projectIDIn": [ "example" ] }'

Body

Media typeapplication/json

Body

object
orgIDIn
Array<string>
projectIDIn
Array<string>
Examplegenerated
{
"orgIDIn": [
"example"
],
"projectIDIn": [
"example"
]
}

OK

Media typeapplication/json
Array<object>
object
action
required
string
actorID
required
string
createdAt
required
string
id
required
string
metadata
required
object
key
additional properties
string
orgID
required
string
projectID
required
string
targetID
required
string
targetType
required
string
Examplegenerated
[
{
"action": "example",
"actorID": "example",
"createdAt": "example",
"id": "example",
"metadata": {
"additionalProperty": "example"
},
"orgID": "example",
"projectID": "example",
"targetID": "example",
"targetType": "example"
}
]