PUT api/ratecards/{id}/details
Updates a Rate Card
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the Ratecard. |
integer |
Required |
Body Parameters
Rate Card details to update.
RateCardDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| title |
title |
string |
None. |
| label |
label |
string |
None. |
| description |
description |
string |
None. |
| type |
type |
string |
None. |
| comment |
comment |
string |
None. |
Request Formats
application/json, text/json, application/scim+json
Sample:
{
"title": "sample string 1",
"label": "sample string 2",
"description": "sample string 3",
"type": "sample string 4",
"comment": "sample string 5"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
On success: HTTP 200 OK. On failure: HTTP 400 Bad Request with an error message.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/scim+json
Sample:
Sample not available.