Create rates for a rateGroup by rateGroup Id
post
/PASService/rest/services/v1/rateGroups/{rateGroupId}/rates
Creates single or multiple rates based on the specified rateGroup Id
Request
Path Parameters
-
rateGroupId(required): string(guid)
RateGroup Id
Supported Media Types
- application/json
Root Schema : schema
Type:
stringResponse
201 Response
successful operation
Examples
This example describes how to create a single or multiple rates based on the specified rateGroup Id.
Example cURL Command
Use the following cURL command to submit a request on the REST resource:
curl -X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-L "http://server:port//PASService/rest/services/v1/rateGroups/{rateGroupId}/rates" \
-d '{"Use this placeholder to plug-in the example request body given below"}'
Example Request Body
The following shows an example of the request body in JSON format:
{
"rates": [
{
"rateGroupId": "53911792-BA61-4D86-976C-80EA80C4872A",
"rateDescription": "TestrRate200",
"dateCriteria": null,
"integerCriteria": 14,
"rate": 0.72,
"criteria1": "01",
"criteria2": "02",
"criteria3": null,
"criteria4": null,
"criteria5": null,
"criteria6": null,
"criteria7": null,
"criteria8": null,
"criteria9": null,
"criteria10": null
}
]
}