CP-TransmissionService

Host URL

https://transmission-prod.tracking.callpotential.com/

Endpoints

POST https://transmission-prod.tracking.callpotential.com/web-reservation/

Format

querystring:


body: 

required: pms_type: ‘sitelink’ or ‘centershift’ depending on the integration account_id: sitelink corp code location_id: sitelink location id url: the url of the current page (preferrably with google/facebook/etc tracking information still in it) reservation_id or rental_id must be supplied (and both can be) optional: gclid: optional gcid: optional


### Example

POST https://transmission-prod.tracking.callpotential.com/web-reservation/ { “pms_type”:”sitelink”, “account_id”:”ABCK”, “location_id”:”CRH”, “reservation_id”:”140053”, “gcid”:”GA1.2.291428795.1234546789076”, “gclid”: “Cj0KCQjw0PWRBhDKARIsAPKHFGg8n3mSfOxoyhc9lgVQfQGikMrRwbCSjN1FYpGtTcWsvQE5MCPoQ98aAn-OEALw_wcB”, “url”:”https:\/\/www.google.com\/onboarding\/?location=8123&unit=27009&pages=2” }


### Converting from previous format to new format
```POST https://transmission-prod.tracking.callpotential.com/web-reservation/sitelink/```
becomes
```POST https://transmission-prod.tracking.callpotential.com/web-reservation/```

fields change

{ corp_code -> account_id location_code -> location_id url -> url (no change) reservation_id-> reservation_id (no change) ledger_id -> rental_id gclid -> gclid (no change) gcid -> gcid (no change) -> pms_type (add pms type, it should be set to ‘sitelink’) } ```