Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: SI: Added example for exporting revision for multiple users.

...

URL
/openspecimen/rest/ng/audit/export-revisions
Method
POST
Body


Expand
titleRequest: Single User


Code Block
{
  "startDate": 1551398400000,
  "endDate": 1552608000000,
  "userId": 1,
  "includeModifiedProps": true,
  "entities": ["Participant", "ParticipantMedicalIdentifier", "CollectionProtocolRegistration", "ParticipantExtension"]
}



Expand
titleRequest: Multiple Users


Code Block
languagejs
{
  "startDate": 1551398400000,
  "endDate": 1552608000000,
  "userIds": [1, 2, 3],
  "includeModifiedProps": true,
  "entities": ["Participant", "ParticipantMedicalIdentifier", "CollectionProtocolRegistration", "ParticipantExtension"]
}




Response

The response contains the file ID that can be used to download the exported revisions file.

...