Chilkat Online Tools

PHP (Extension) / New FreshBooks / Get a Single Service Rate

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

$http->put_AuthToken('<access_token>');$success = $http->QuickGetSb('https://api.freshbooks.com/comments/business/{{businessid}}/service/{{serviceid}}/rate',$sbResponseBody);
?>

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://api.freshbooks.com/comments/business/{{businessid}}/service/{{serviceid}}/rate

Postman Collection Item JSON

{
  "name": "Get a Single Service Rate",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "https://api.freshbooks.com/comments/business/{{businessid}}/service/{{serviceid}}/rate",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "comments",
        "business",
        "{{businessid}}",
        "service",
        "{{serviceid}}",
        "rate"
      ]
    },
    "description": "Retrieves information for a single service ID"
  },
  "response": [
  ]
}