How to consume Qualtrics REST API in C #?

0

I am starting a new project and I am new to this, what I want to do is use the REST API of Qualtrics , which is a page of surveys, so you will find different URLs containing your API, the documentation explains how to make the structure of the call in cURL, which is this:

curl -X POST -H 'X-API-TOKEN: yourtokenhere' -H 'Content-Type: application/json' -d '{
    "category": "Star Wars - Rebels",
    "libraryId": "UR_1234567890AbCdE",
    "name": "Rebel Contacts"
}' 'https://yourdatacenterid.qualtrics.com/API/v3/mailinglists'

I already have the token, but I'm not sure how to go from cURL to HttpClient (or some other way) with c # for a console application.

    
asked by Jason0495 20.08.2018 в 03:31
source

0 answers