Foxpro / Microsoft Graph / Delete rentionionLabel
        
        Back to Collection Items
        LOCAL loHttp
LOCAL lnSuccess
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
loHttp = CreateObject('Chilkat.Http')
* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"
loResp = CreateObject('Chilkat.HttpResponse')
lnSuccess = loHttp.HttpNoBody("DELETE","https://graph.microsoft.com/beta/security/labels/retentionLabels/{{retentionLabelId}}",loResp)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loResp
    CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loHttp
RELEASE loResp
        Curl Command
        curl -X DELETE
	-H "Authorization: Bearer <access_token>"
https://graph.microsoft.com/beta/security/labels/retentionLabels/{{retentionLabelId}}
        Postman Collection Item JSON
        {
  "name": "Delete rentionionLabel",
  "request": {
    "method": "DELETE",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://graph.microsoft.com/beta/security/labels/retentionLabels/{{retentionLabelId}}",
      "protocol": "https",
      "host": [
        "graph",
        "microsoft",
        "com"
      ],
      "path": [
        "beta",
        "security",
        "labels",
        "retentionLabels",
        "{{retentionLabelId}}"
      ]
    }
  },
  "response": [
  ]
}