Delete personal access token
DELETE
/drop_points/{id}/agreements/{agreement_id}/personal_access_tokens/{pat_id}
const url = 'https://example.com/drop_points/example/agreements/example/personal_access_tokens/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://example.com/drop_points/example/agreements/example/personal_access_tokens/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
agreement_id
required
string
pat_id
required
string