withdraw_resource_standby_request
Take back the standby request the creator has open on the connector. Takes no input.
Purpose
A creator holds one standby request at a time, whichever resource it was for, so there is nothing to name: the picker the bot sent stops waiting for an answer. When none is open the call changes nothing and still succeeds. Only the account holder may do this. The REST twin is DELETE /v1/projects/{project}/resources/{resource}/standby/request.
Required ability
project-recovery:delete
Input schema
{
"type": "object",
"properties": {}
}Output shape
{
"data": {
"status": "withdrawn"
},
"meta": {}
}Example prompts
"Never mind the standby picker, withdraw it."
Failure modes
VALIDATION_FAILED— the token is not the account holder's.AUTHENTICATION_REQUIRED— no authenticated user on the request.TOKEN_MISSING_ABILITY— token lacksproject-recovery:delete.
Related
request_resource_standby— the request being withdrawn.- Recovery API
How is this guide?