POST
/
linq
curl --request POST \
  --url https://localhost:7777/linq \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "link": {
    "target": "service-name",
    "action": "fetch"
  },
  "query": {
    "intent": "api/inventory",
    "params": {},
    "payload": {}
  }
}'
{
  "result": {},
  "metadata": {
    "source": "service-name",
    "status": "success",
    "team": "67d0aeb17172416c411d419e",
    "cacheHit": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Linq protocol wrapper request

The body is of type object.

Response

200
application/json

Successful response

The response is of type object.