Skip to main content
POST
/
networks
/
auditoperations
Search Audit Operations
curl --request POST \
  --url https://api.eflow.team/v1/networks/auditoperations \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2024-01-01",
  "to": "2024-01-31",
  "timezone_id": 67,
  "query": {
    "resource_type": "offer",
    "operation_type": "update"
  }
}
'
{
  "operations": [
    {
      "audit_operation_id": 123,
      "user": {
        "name": "<string>",
        "email": "<string>"
      },
      "operation_type": "create",
      "resource_type": "<string>",
      "resource_id": 123,
      "changes": {},
      "timestamp": 123
    }
  ]
}

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

application/json
from
string
required

Start date for the audit search (YYYY-MM-DD).

to
string
required

End date for the audit search (YYYY-MM-DD).

timezone_id
integer

Timezone ID for interpreting the date range.

query
object

Filters for narrowing the audit results.

Response

200 - application/json

OK

operations
object[]