Export personal data
documentedThis endpoint allows for the export of all associated personal data from the system for the provided individual to assist with compliance requests such as the GDPR's right of access and/or right to data portability.
POST /api/v2/{username}/{token}/json/compliance/export/Complianceno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.getambassador.com/api/v2/{{$username}}/{{$token}}/json/compliance/export/" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"start_date": "{{$start_date}}", "end_date": "{{$end_date}}", "format": "{{$export_format}}", "filters": {"status": "{{$filters_status}}"}}'