Delete field
DELETE
/api/v1/fields/{fieldId}
const url = 'https://api.cloudtable.insurge.io/api/v1/fields/example';const options = {method: 'DELETE', headers: {'x-api-key': '<x-api-key>'}};
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://api.cloudtable.insurge.io/api/v1/fields/example \ --header 'x-api-key: <x-api-key>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”fieldId
required
string
Responses
Section titled “Responses”Deleted
Media typeapplication/json
object
deleted
required
string
Examplegenerated
{ "deleted": "example"}Unauthorized
Not found