DS | Returns Product Quotation
Endpoint
POST
/msapi/productoffermanagementms/v3/product/review
Copy
This API is utilized to provide product quotations and pricing changes for evaluation.
Header Parameters
Body Parameters
Responses
OK
Body
application/json
REQUEST
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15curl --request POST \
--url https://example.com/msapi/productoffermanagementms/v3/product/review \
--header 'accept: application/json' \
--header 'authorization: Basic bTIzOTgwQGlkcC5hdHQuY29tOmlkcEs4c3J2Y3NBdXRoMjAyMW5wISE=' \
--header 'content-type: application/json' \
--data '
{
"accountNumber": "1234567890",
"productType": "BROADBAND",
"reasonCode": "CR",
"mode": "DeviceSwap",
"intent": "BBDevice",
"deviceId": "65838021382177962"
}
'RESPONSE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100{
"content": {
"accountDetails": {
"ban": "1234567890"
},
"cartId": "97da50d0-aa9c-11ec-818f-01c49e663c0c",
"totalNrfAmount": "40",
"deviceReturnDate": "2022-12-22T00:00:00Z",
"checkoutValidation": {
"configuration": [
{
"status": "incomplete",
"type": "FulfillmentOptions"
},
{
"status": "incomplete",
"type": "Terms"
}
]
},
"orderTotalPrice": [
{
"type": "oneTimeCharges",
"charges": [
{
"base": 2,
"payImmediately": true,
"uom": "OC"
}
]
},
{
"type": "taxes",
"charges": [
{
"base": 0,
"uom": "OC",
"payImmediately": false
}
]
},
{
"type": "govtFeesBreakup",
"charges": [
{
"description": "Chicago Lease tax",
"taxRate": 0.09000000357627869,
"base": 0,
"uom": "oc",
"payImmediately": false
}
]
}
],
"productDetails": [
{
"id": "52165303-5d47-4827-a51c-f7ab08570210",
"productOrderItemId": "83f0072a-d578-46a1-ba23-59accea41f0a",
"productType": "BB_Offer",
"productDescription": "Up to 300 Mbps download",
"productRelationship": [
{
"type": "equipment",
"value": [
{
"id": "62165303-5d47-4827-a51c-f7ab08570210",
"type": "Rented_Equipment",
"name": "Residential Gateway"
}
]
}
],
"productOrderRelationship": [
{
"type": "fulfillmentOptions",
"fulfillmentOptions": [
{
"id": "c501a63e-97bc-4663-9327-fe2253f3e4b8",
"shipmentDates": {
"from": "2022-03-28",
"to": "2022-03-30"
},
"deliveryDates": {
"from": "2022-03-29",
"to": "2022-03-31"
},
"deliveryMethod": "Standard Shipping 2 Days",
"deliverycharges": {
"base": 2,
"total": 2,
"uom": "OC"
}
}
]
}
]
}
]
}
}