Retrieves quotes comments for each quote belonging to the user based on the proper access rights
get
/ccstore/v1/selfservice/quotes/{id}/comments
Retrieves quote comments for each quote belonging to the user based on the proper access rights. If the profile is not logged in or is anonymous then the endpoint will fail. The user will be granted required access rights based on which the quote comments api will return all the comments belonging to the quote
Request
Supported Media Types
- application/json
Path Parameters
-
id(required): string
Id of the Quote
Query Parameters
-
limit: string
The batch size of the quote comments to be fetched together. Maximum limit is 250. Default value is 10
-
offset: string
The offset of the page. By default, offset is 0, which means first page will be returned.
-
orderby: string
Specifies a comma-separated list of pairs to order the response by.
-
totalResults: boolean
Indicates if the total results should be included in the response.
Response
Supported Media Types
- application/json
200 Response
Response containing the quote comments
Root Schema : GetQuoteCommentsResponse
Example:
{
"offset":0,
"limit":1,
"count":1,
"hasMore":false,
"items":[
{
"_sequence_number":1,
"_document_number":1,
"_s_commentDate":"2024-03-06T05:15:00Z",
"_s_commentor":"test",
"_currency_pref":{
"id":14619668,
"currencyCode":"USD"
},
"_bs_id":"3023366124",
"_row_number":1,
"_s_customerComment":"test comment1"
}
]
}
400 Response
Bad query params in the request
Root Schema : Error
Type:
Show Source
object
-
message:
string
The error message
-
status:
string
The Error code