Chilkat Online Tools

autoit / Plivo REST API / Retrieve account details

Back to Collection Items

; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

$oHttp.BasicAuth = True
$oHttp.Login = "{{auth_id}}"
$oHttp.Password = "password"

$oSbResponseBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://api.plivo.com/v1/Account/<auth_id>/",$oSbResponseBody)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("Response status code = " & $oHttp.LastStatus & @CRLF)
ConsoleWrite($oSbResponseBody.GetAsString() & @CRLF)

Curl Command

curl -X GET
	-u '{{auth_id}}:password'
https://api.plivo.com/v1/Account/<auth_id>/

Postman Collection Item JSON

{
  "name": "Retrieve account details",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "https://api.plivo.com/v1/Account/{{auth_id}}/",
      "protocol": "https",
      "host": [
        "api",
        "plivo",
        "com"
      ],
      "path": [
        "v1",
        "Account",
        "{{auth_id}}",
        ""
      ]
    },
    "description": "Retrieves the details of the account.\n\nMore information can be found [here](https://www.plivo.com/docs/account/api/account#retrieve-account-details)"
  },
  "response": [
    {
      "name": "Retrieve account details",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "https://api.plivo.com/v1/Account/{{auth_id}}/",
          "protocol": "https",
          "host": [
            "api",
            "plivo",
            "com"
          ],
          "path": [
            "v1",
            "Account",
            "{{auth_id}}",
            ""
          ]
        }
      },
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
      ],
      "cookie": [
      ],
      "body": "{\n    \"account_type\": \"standard\",\n    \"address\": \"Wayne Enterprises Inc.\",\n    \"api_id\": \"150892a0-922a-11e7-b6f4-061564b78b75\",\n    \"auth_id\": \"MAXXXXXXXXXXXXXXXXXX\",\n    \"auto_recharge\": false,\n    \"billing_mode\": \"prepaid\",\n    \"cash_credits\": \"1.80900\",\n    \"city\": \"Gotham\",\n    \"name\": \"Bruce Wayne\",\n    \"resource_uri\": \"/v1/Account/MAXXXXXXXXXXXXXXXXXX/\",\n    \"state\": \"NY\",\n    \"timezone\": \"America/New_York\"\n}"
    }
  ]
}