PHP (Extension) / LHDN MyInvois SDK / Reject Document
Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
$json->UpdateString('status','rejected');$json->UpdateString('reason','some reason for rejected document');$http->put_AuthToken('<access_token>');$json->EmitSb($sbRequestBody);
?>
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-d '{
"status":"rejected",
"reason":"some reason for rejected document"
}'
https://{apiBaseUrl}/api/v1.0/documents/:uuid/state
Postman Collection Item JSON
{
"name": "Reject Document",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{generatedAccessToken}",
"type": "string"
}
]
},
"method": "PUT",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\r\n\t\"status\":\"rejected\",\r\n\t\"reason\":\"some reason for rejected document\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{apiBaseUrl}/api/v1.0/documents/:uuid/state",
"host": [
"{apiBaseUrl}"
],
"path": [
"api",
"v1.0",
"documents",
":uuid",
"state"
],
"variable": [
{
"key": "uuid",
"value": "",
"uuid": "9e5b5ae1-d08e-4bcd-8b05-43a26e50a5d3"
}
]
}
},
"response": [
]
}