Entity Posting API - Staff Add/Update

If the StaffId does not exist, a new Staff record will be created. If it does, it will be updated.

Triggered Updates:

Standard ShowTimeAnalytics Message Parameters:

Fields for Staff 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>
	<Staffs>
		<Staff id="XXX" siteId="XXX">
			<Name>XXX</Name>
			<Type>XXX</Type>
			<Tags>
				<Tag>XXX</Tag>
			</Tags>
			<Gender>XXX</Gender>
			<DateOfBirth>XXX</DateOfBirth>
			<Currency>XXX</Currency>
			<StaffRates>
				<StaffRate id="XXX">
					<Tags>
						<Tag>XXX</Tag>
					</Tags>
					<RateValue precision="XXX">XXX</RateValue>
					<RateTerm>XXX</RateTerm>
					<EffectiveFrom>XXX</EffectiveFrom>
				</StaffRate>
			</StaffRates>
		</Staff>
	</Staffs>
</ShowTimeAnalytics>

Callback Post Fields:

Message Structure - XML:

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