Chilkat Online Tools

Delphi (DLL) / Microsoft Graph / Get subjectRightsRequest

Back to Collection Items

var

begin
CkHttp_putAuthToken(http,'<access_token>');success := CkHttp_QuickGetSb(http,'https://graph.microsoft.com/v1.0/privacy/subjectRightsRequests/{{subjectRightsRequestId}}',sbResponseBody);


Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
https://graph.microsoft.com/v1.0/privacy/subjectRightsRequests/{{subjectRightsRequestId}}

Postman Collection Item JSON

{
  "name": "Get subjectRightsRequest",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "url": {
      "raw": "https://graph.microsoft.com/v1.0/privacy/subjectRightsRequests/{{subjectRightsRequestId}}",
      "protocol": "https",
      "host": [
        "graph",
        "microsoft",
        "com"
      ],
      "path": [
        "v1.0",
        "privacy",
        "subjectRightsRequests",
        "{{subjectRightsRequestId}}"
      ]
    }
  },
  "response": [
  ]
}