Chilkat Online Tools

Delphi (DLL) / Microsoft Graph / Get drives

Back to Collection Items

var

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


Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://graph.microsoft.com/v1.0/sites/{{SiteID}}/drives

Postman Collection Item JSON

{
  "name": "Get drives",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "https://graph.microsoft.com/v1.0/sites/{{SiteID}}/drives",
      "protocol": "https",
      "host": [
        "graph",
        "microsoft",
        "com"
      ],
      "path": [
        "v1.0",
        "sites",
        "{{SiteID}}",
        "drives"
      ]
    }
  },
  "response": [
  ]
}