Delete a log shipping token
DELETE/v1/log-shipping/tokens/:id
Deletes a log shipping token by its ID, while providing relevant information about the token's recent status and activity.
An account must have at least 1 enabled token. You won't be able to disable or delete the last token. Important: Active tokens can be deleted using this call. Confirm that a token is no longer needed before deleting it. Please ensure to change the region in the URL to match your account's region.
Request
Path Parameters
This token's ID.
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
This token's name.
This token's ID.
The token itself.
Unix timestamp of when this token was last updated.
Email address of the last user to update this token.
Unix timestamp of when this token was created.
Email address of the user who created this token.
If this token is enabled, true
. If it's disabled, false
.
{
"name": "apac prod",
"id": 786351,
"token": "6bLXmMA6FLibc7ySSqNcCfvbhtqT0rPS",
"updatedAt": 414720000,
"updatedBy": "shalom.the.mighty@gmail.com",
"createdAt": 389836800,
"createdBy": "you.got.this@gmail.com",
"enabled": true
}