Delete auth profile
DELETE
/v1/auth-profiles/{id}
Authentication
Bearer Token
Path Parameters
id
string
required
path
Responses
200
Deleted
application/jsonok
boolean
404
Error response
curl -X DELETE 'https://screenframed.com/v1/auth-profiles/string' \ -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://screenframed.com/v1/auth-profiles/string', { method: 'DELETE', headers: { "Authorization": "Bearer YOUR_API_TOKEN" }});const data = await response.json();console.log(data);
import requestsheaders = { 'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.delete('https://screenframed.com/v1/auth-profiles/string', headers=headers)print(response.json())
200
Response
{ "ok": true}
API Playground
Try this endpoint
DELETE
/v1/auth-profiles/{id}