Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
// Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"
loResp = loHttp.QuickRequest("DELETE","https://id.mycompany.com/.well-known/assetlinks.json")
if (loHttp.LastMethodSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
return
endif
? str(loResp.StatusCode)
? loResp.BodyStr
release loResp
release loHttp
Curl Command
curl -X DELETE
-H "Authorization: Bearer <access_token>"
https://id.mycompany.com/.well-known/assetlinks.json
Postman Collection Item JSON
{
"name": "Step 3: Delete assetlinks.json",
"request": {
"method": "DELETE",
"header": [
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{customDomainUrl}}/.well-known/assetlinks.json",
"host": [
"{{customDomainUrl}}"
],
"path": [
".well-known",
"assetlinks.json"
]
}
},
"response": [
]
}