Back to Collection Items
        Use ChilkatAx-win32.pkg
Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vQueryParams
    Handle hoQueryParams
    Variant vResp
    Handle hoResp
    String sTemp1
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.
    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End
    Get Create (RefClass(cComChilkatJsonObject)) To hoQueryParams
    If (Not(IsComObjectCreated(hoQueryParams))) Begin
        Send CreateComObject of hoQueryParams
    End
    Get ComUpdateString Of hoQueryParams "startDate" "<string>" To iSuccess
    Get ComUpdateString Of hoQueryParams "endDate" "<string>" To iSuccess
    Get ComUpdateString Of hoQueryParams "searchString" "<string>" To iSuccess
    Get ComUpdateString Of hoQueryParams "format" "csv" To iSuccess
    Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
    If (Not(IsComObjectCreated(hoResp))) Begin
        Send CreateComObject of hoResp
    End
    Get pvComObject of hoQueryParams to vQueryParams
    Get pvComObject of hoResp to vResp
    Get ComHttpParams Of hoHttp "GET" "https://your-domain.atlassian.net/wiki/rest/api/audit/export" vQueryParams vResp To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End
    Get ComSaveBodyBinary Of hoResp "response.zip" To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed to save the response body to the filesystem."
    End
End_Procedure
        Curl Command
        curl -G -d "startDate=%3Cstring%3E"
	-d "endDate=%3Cstring%3E"
	-d "searchString=%3Cstring%3E"
	-d "format=csv"
	-o "response.zip"
https://your-domain.atlassian.net/wiki/rest/api/audit/export
        Postman Collection Item JSON
        {
  "name": "Export audit records",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/api/audit/export?startDate=<string>&endDate=<string>&searchString=<string>&format=csv",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "audit",
        "export"
      ],
      "query": [
        {
          "key": "startDate",
          "value": "<string>",
          "description": "Filters the exported results to the records on or after the `startDate`.\nThe `startDate` must be specified as a [timestamp](https://www.unixtimestamp.com/)."
        },
        {
          "key": "endDate",
          "value": "<string>",
          "description": "Filters the exported results to the records on or before the `endDate`.\nThe `endDate` must be specified as a [timestamp](https://www.unixtimestamp.com/)."
        },
        {
          "key": "searchString",
          "value": "<string>",
          "description": "Filters the exported results to records that have string property values\nmatching the `searchString`."
        },
        {
          "key": "format",
          "value": "csv",
          "description": "The format of the export file for the audit records."
        }
      ]
    },
    "description": "Exports audit records as a CSV file or ZIP file.\n\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:\n'Confluence Administrator' global permission."
  },
  "response": [
    {
      "name": "Returned if the requested export of the audit records is returned.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/api/audit/export?startDate=<string>&endDate=<string>&searchString=<string>&format=csv",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "audit",
            "export"
          ],
          "query": [
            {
              "key": "startDate",
              "value": "<string>"
            },
            {
              "key": "endDate",
              "value": "<string>"
            },
            {
              "key": "searchString",
              "value": "<string>"
            },
            {
              "key": "format",
              "value": "csv"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/zip"
        }
      ],
      "cookie": [
      ],
      "body": "nostrud officia proident"
    },
    {
      "name": "Returned if the calling user does not have permission to view the audit\nlog.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/api/audit/export?startDate=<string>&endDate=<string>&searchString=<string>&format=csv",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "audit",
            "export"
          ],
          "query": [
            {
              "key": "startDate",
              "value": "<string>"
            },
            {
              "key": "endDate",
              "value": "<string>"
            },
            {
              "key": "searchString",
              "value": "<string>"
            },
            {
              "key": "format",
              "value": "csv"
            }
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}