The CheckMarket Survey API uses custom HTTP headers for authentication. For the full details, see the specific section regarding the Authentication Headers. In this example we will use the default API request to get the HATEOAS for the root requests. We have created a short example in cUrl and C#.NET.
Before you can start using our API, you have to create your own keys. This can be done in the Keys section.
On this screen you can choose a name as a short reference and a description to explain the purpose of the key. You can define the relevant access rights depending on the request you plan to use. Some API calls (for instance the lookup requests) don't require any special roles. For other API calls, the required roles are indicated in the API Reference. You can change these settings at any time in the future without risking the actual key value will change.
We recommend to limit the access rights to your exact needs, and we recommend to a seperate key for each internal intention. For instance, a reporting page in your CRM should get a seperate key then a data transfer process which is used to add contacts to the CheckMarket platform.
After creating an API key, we will show the MasterKey and Key.
To retrieve the created master key and key, you can copy the tooltip and paste it in your code.
TLS 1.0 is considered to by unsafe, that's why we don't support it in our API. We highly recommend to use TLS1.2.
Some clients need some additional logic to support TLS 1.2:
--tlsv1.2
forces curl to use TLS version 1.2ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
In this example we perform the default API request which will return the HATEOAS for the root request. For this request no special roles are required so you should always get a result back. Depending on the tool or development platform you are using, you should pass the HTTP headers in a different way. Currently we have provided an example in cURL and C#.NET.
curl https://api-us.agileresearch.medallia.com/3 -k -H "X-Master-Key:{MasterKey}" -H "X-Key:{Key}"
{ "Meta" : { "Status" : 200, "Timestamp" : "2024-11-21T10:16:05.7978685Z" }, "Links" : { "Other" : [{ "Href" : "https://api-us.agileresearch.medallia.com/3/surveys", "Title" : "Surveys", "Method" : "GET" }, { "Href" : "https://api-us.agileresearch.medallia.com/3/contactgroups", "Title" : "ContactGroups", "Method" : "GET" }, { "Href" : "https://api-us.agileresearch.medallia.com/3/lookup", "Title" : "Lookup", "Method" : "GET" }, { "Href" : "https://api-us.agileresearch.medallia.com/3/contactfolders", "Title" : "ContactFolders", "Method" : "GET" } ] } }
System.Net.Http.HttpClient client = new System.Net.Http.HttpClient(); client.BaseAddress = new Uri("https://api-us.agileresearch.medallia.com/"); client.DefaultRequestHeaders.Add("X-Master-Key", "{MasterKey}"); client.DefaultRequestHeaders.Add("X-Key", "{Key}"); System.Net.Http.HttpResponseMessage response = client.GetAsync("/3").Result;
{ "Meta" : { "Status" : 200, "Timestamp" : "2024-11-21T10:16:05.7978685Z" }, "Links" : { "Other" : [{ "Href" : "https://api-us.agileresearch.medallia.com/3/surveys", "Title" : "Surveys", "Method" : "GET" }, { "Href" : "https://api-us.agileresearch.medallia.com/3/contactgroups", "Title" : "ContactGroups", "Method" : "GET" }, { "Href" : "https://api-us.agileresearch.medallia.com/3/lookup", "Title" : "Lookup", "Method" : "GET" }, { "Href" : "https://api-us.agileresearch.medallia.com/3/contactfolders", "Title" : "ContactFolders", "Method" : "GET" } ] } }
Each call to our survey API is logged, we keep track of the used request, the specified content-type, the requesting ip address and the key which has been used. Additionaly you can also view the response. You can view the logged request in the log section where you can filter on
Since we keep track of the key which has been used, the authentication must be successfull before we can show you the entry in our log section. If a certain key is not authorized to perform a request, you will see the entry in the logfile.
Congratulations, now you are ready to start discovering our survey API!
Or you can continue to the next example and let us show you some amazing possibilities...