Dossier-specific data
All API endpoints for dossier specific information and actions require a dossier_id parameter. When this parameter is blank, an HTTP not_found response code is returned:
Sample request
GET /api/v1/dossiers//responses HTTP/1.1Host: api.example.comAuthorization: Bearer YOUR_API_TOKENcurl "https://api.example.com/api/v1/dossiers//responses" \ -u "username:password"$username = "username"$password = "password"$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $username, $password)))
$headers = @{ "Authorization" = "Basic $base64AuthInfo"}
Invoke-RestMethod -Uri "https://api.example.com/api/v1/dossiers//responses" ` -Method GET ` -Headers $headers