GET
/
v1
/
s
/
connector
const options = {
  method: 'GET',
  headers: {'x-api-key': '<api-key>', 'x-api-secret': '<api-key>'}
};

fetch('https://api.runmorph.dev/v1/s/connector', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
{
  "object": "connector",
  "id": "<string>",
  "name": "<string>",
  "operations": [
    "<string>"
  ],
  "settings": [
    {
      "key": "<string>",
      "type": "text",
      "name": "<string>",
      "required": true,
      "description": "<string>",
      "default": "<string>"
    }
  ],
  "cloud": {
    "hasCustomCredential": true
  }
}

Authorizations

x-api-key
string
header
required
x-api-secret
string
header
required

Response

200
application/json

OK

The response is of type object.