Trigger a scan of known PDSes for new records
Input
Encoding
application/jsonpdsUrl
string
Optional
Specific PDS URL to scan (all if omitted)
Output
Encoding
application/jsonoperationId
string
Required
ID of the started backfill operation
Errors
AuthenticationRequired
AdminRequired
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"properties": {
"pdsUrl": {
"type": "string",
"description": "Specific PDS URL to scan (all if omitted)"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"operationId"
],
"properties": {
"operationId": {
"type": "string",
"description": "ID of the started backfill operation"
}
}
},
"encoding": "application/json"
},
"description": "Trigger a scan of known PDSes for new records"
}