Cancel Grant
DELETE
/continue/{id}
const url = 'https://auth.interledger-test.dev/continue/example';const options = {method: 'DELETE', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://auth.interledger-test.dev/continue/example \ --header 'Authorization: <Authorization>'Cancel a grant request or delete a grant client side.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
The unique reference ID of the grant request continuation.
Responses
Section titled “Responses”No Content
Unauthorized
Media typeapplication/json
One of:
Invalid client
object
error
object
description
string
code
string
Invalid continuation
object
error
object
description
string
code
string
Invalid request
object
error
object
description
string
code
string
Example
{ "error": { "code": "invalid_client" }}Not Found
Media typeapplication/json
Invalid request
object
error
object
description
string
code
string
Example
{ "error": { "code": "invalid_request" }}