Chilkat Online Tools

PHP (Extension) / Egyptian eInvoicing SDK R1.5 / 7. Get Document Package

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

$http->put_AuthToken('<access_token>');$success = $http->QuickGetSb('https://domain.com/api/v1/documentPackages/:rid',$sbResponseBody);
?>

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://domain.com/api/v1/documentPackages/:rid

Postman Collection Item JSON

{
  "name": "7. Get Document Package",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{generatedAccessToken}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{apiBaseUrl}}/api/v1/documentPackages/:rid",
      "host": [
        "{{apiBaseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "documentPackages",
        ":rid"
      ],
      "variable": [
        {
          "key": "rid",
          "value": ""
        }
      ]
    }
  },
  "response": [
  ]
}