action osf_registrations_logs_list { label: "List all logs" description: "A paginated list of the registration's logs.\n\nThe returned logs are sorted by their `date`, with the most recents logs appearing first.\n\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of up to 10 logs. Each resource in the array is a separate logs object.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination).\n#### Filtering\nYou can optionally request that the response only include logs that match your filters by utilizing the `filter` query parameter, e.g. https://api.osf.io/v2/registrations/wucr8/logs/?filter[action]=made_private.\n\nLogs may be filtered by their `action`, and `date`." provider: osf method: GET path: "/registrations/{registration_id}/logs/" encoding: json input: { type: "object" properties: { registration_id: { type: "string" } } required: ["registration_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }