Entity Posting API - Distributor Add/Update

We will try to map the DistributorId to our existing master list of distributors. If we cannot find a mapping, we will create it as a new mapping to our "Other" master Distributor. It will be determined offline if this represents a new distributor or a new mapping and all data will be remapped accordingly.

Triggered Updates:

Standard ShowTimeAnalytics Message Parameters:

Fields for Distributor Entity:

PLEASE NOTE: All field and attribute names are case sensitive

Message Structure - XML:

POST https://{{CIRCUIT_URL}}/data/pos/

POST - XML

<?xml version="1.0" encoding="UTF-8"?>
<ShowTimeAnalytics dataSupplierId="XXX" messageSequence="XXX">
	<CallbackUrl>https://XXX</CallbackUrl>
	<Distributors>
		<Distributor id="XXX">
			<Name>XXX</Name>
			<Tags>
				<Tag>XXX</Tag>
			</Tags>
			<Address id="XXX">
				<Line1>XXX</Line1>
				<Line2>XXX</Line2>
				<Line3>XXX</Line3>
				<Town>XXX</Town>
				<Region>XXX</Region>
				<Country>XXX</Country>
				<PostCode>XXX</PostCode>
			</Address>
		</Distributor>
	</Distributors>
</ShowTimeAnalytics>

Callback Post Fields:

Message Structure - XML:

<?xml version="1.0" encoding="UTF-8"?>
<ShowTimeAnalyticsResponse dataSupplierId="XXX" messageSequence="XXX">
    <Responses>
        <Response id="XXX" entity="Distributor">
            <Status>XXX</Status>
            <Warnings>
            	<Warning>XXX</Warning>
            </Warnings>
            <Errors>
            	<Error>XXX</Error>
            </Errors>
        </Response>
    </Responses>
</ShowTimeAnalyticsResponse>