Trigger a rescan of a specific PDS
Input
Encoding
application/jsonpdsUrl
stringuri
Required
URL of the PDS to rescan
Output
Encoding
application/jsonsuccess
boolean
Required
Whether the rescan was triggered
Errors
AuthenticationRequired
AdminRequired
InvalidRequest
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",
"required": [
"pdsUrl"
],
"properties": {
"pdsUrl": {
"type": "string",
"format": "uri",
"description": "URL of the PDS to rescan"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
},
{
"name": "InvalidRequest"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"description": "Whether the rescan was triggered"
}
}
},
"encoding": "application/json"
},
"description": "Trigger a rescan of a specific PDS"
}