phpExt / MongoDB Atlas / Get One Organization Invoice
Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
$http->put_DigestAuth(true);
$http->put_Login('username');
$http->put_Password('password');
$sbResponseBody = new CkStringBuilder();
$success = $http->QuickGetSb('https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/invoices/{{INVOICE-ID}}',$sbResponseBody);
if ($success == false) {
print $http->lastErrorText() . "\n";
exit;
}
print 'Response status code = ' . $http->get_LastStatus() . "\n";
print $sbResponseBody->getAsString() . "\n";
?>
Curl Command
curl -X GET
--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/invoices/{{INVOICE-ID}}
Postman Collection Item JSON
{
"name": "Get One Organization Invoice",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/orgs/{{ORG-ID}}/invoices/{{INVOICE-ID}}",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"orgs",
"{{ORG-ID}}",
"invoices",
"{{INVOICE-ID}}"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/organization-get-all/"
},
"response": [
]
}