Delete credentials for an S3 bucket
DELETE
/s3-credential/endpoint/{endpoint_id}/bucket/{bucket_id}
const url = 'https://your-candig-domain/ingest/s3-credential/endpoint/example/bucket/example';const options = {method: 'DELETE'};
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://your-candig-domain/ingest/s3-credential/endpoint/example/bucket/exampleDelete credentials for an S3 bucket
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”endpoint_id
required
string
bucket_id
required
string
Responses
Section titled “Responses”Success
Media typeapplication/json
object
Examplegenerated
{}