Getting Started
Authenticate User
Some API requests are authorized via the user's api_key token. To authorize a particular user, make sure that you set the X-Api-Keyheader for your HTTP request with the content user_api_key.
Example:
curl -X POST \
http://api.vidi.cc/api/v2/orders \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/json' \
-H 'X-Api-Key: xLhRIk2fsEIOD3OC7kIchw' \
-d '{
"order": {
"offer_id": 756,
"payment_method": "Adyen"
}
}'Last updated