| PUT | /v1/configurator | Removes a back order from a car configurator | This endpoint calls Agency API when a ConfigurationCode is removed from a back order. |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ConfiguratorCode | body | string | Yes | Configurator code |
| Guid | body | Guid? | No | BackOrder Guid |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Name | form | string | No | |
| KeyInformation | form | KeyInformation | No | |
| OrderingOptions | form | OrderingOptions | No | |
| ResponseStatus | form | ResponseStatus | Yes | |
| ConfiguratorCode | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| BM7NST | form | string | No | |
| ConfigurationDate | form | string | No | |
| ModelYear | form | string | No | |
| HalfYear | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Interior | form | List<string> | No | |
| Exterior | form | List<string> | No | |
| Options | form | List<string> | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /v1/configurator HTTP/1.1
Host: prod-api-agency-orch-mb-dhc.rapp-customers.co.uk
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ConfiguratorCode: String,
Guid: 00000000000000000000000000000000
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Name: String,
KeyInformation:
{
BM7NST: String,
ConfigurationDate: String,
ModelYear: String,
HalfYear: String
},
OrderingOptions:
{
Interior:
[
String
],
Exterior:
[
String
],
Options:
[
String
]
},
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
ConfiguratorCode: String
}