/visitor
How to send Visitor Profile updates using the HTTP API
Last updated
How to send Visitor Profile updates using the HTTP API
Last updated
The HTTP API enables you to send user profile information to Adnuntius Data. This may be used, for example, to sync data from an external CRM into Adnuntius. If you are sending profile data from a user's browser, then you should use our .
We support two different types of requests, and . Both request methods expect data to be provided using the same request format.
Data is sent to Adnuntius using a HTTP POST request, with a JSON payload containing the fields described below. A separate object is required for each profile to be created or updated.
externalSystemType
String
A unique identifier, e.g. CRM name, that corresponds to the external system providing the data
externalSystemUserId
String
The unique identifier for the user in the external system
folderId
String
The Folder ID in Adnuntius Data, for example: 00000000000123ab
You can also specify the folderId
as a parameter in the request URL.
profileValues
Object
Asynchronous requests are used to quickly send a lot of data to Adnuntius. There is only minimal validation performed on the request before returning a response. The requests are placed into a queue and processed asynchronously by the system. This asynchronous processing means that you can send data far more quickly, but you will not get confirmation that the data was successfully stored by the system.
Asynchronous requests are sent to Adnuntius Data using the following URL:
https://data.adnuntius.com/visitor
Synchronous requests are used when you need to receive confirmation that an update has been correctly received and stored by Adnuntius data.
Asynchronous requests are sent to Adnuntius Data using the following URL:
https://data.adnuntius.com/synchronous/visitor
If the request is received correctly and the record successfully created or updated, an HTTP 200 status code will be returned.
An object containing the names and data to update
If the request is received correctly, an HTTP 200 status code will be returned. Remember, however, that a successful return status does not mean that the profile has been successfully stored by Adnuntius. If you would rather wait for confirmation that the record has been stored, you should instead use the API.
This is a very simple example, using , demonstrating how a profile update is sent to Adnuntius Data.
This is a very simple example, using , demonstrating how a synchronous profile update is sent to Adnuntius Data.
.