Store Locator Custom Fields
post https://sol-qa.capillarytech.com/integration/v1/brand//store-locator/custom-fields/map
This endpoint allows you to map Intouch custom fields to your store-locator custom fields for a given brand.
| |
---|
URI | /integration/v1/brand/[brandID]/store-locator/custom-fields/map |
HTTP Method | POST |
Pagination | No |
Batch support | No |
Rate limit information | Not specified |
POST https://sol-qa.capillarytech.com/integration/v1/brand/{brandId}/store-locator/custom-fields/map
Name | Type | Description |
---|
brandId | string | Unique identifier of the brand |
Header | Value |
---|
Content-Type | application/json |
Field | Type | Description |
---|
mapping | array of objects | List of field-to-field mappings |
intouchCustomField | string | Name of the custom field in Intouch |
mappedCustomField | string | Name of the corresponding custom field in your store-locator API |
curl -i -X POST \
-H "Content-Type:application/json" \
-d '{
"mapping": [
{
"intouchCustomField": "area",
"mappedCustomField": "region"
}
]
}' \
'[https://sol-qa.capillarytech.com/integration/v1/brand/](https://sol-qa.capillarytech.com/integration/v1/brand/){brandId}/store-locator/custom-fields/map'