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

fetch('https://api.runmorph.dev/v1/connections', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
{
  "object": "list",
  "data": [
    {
      "object": "connection",
      "connectorId": "<string>",
      "ownerId": "<string>",
      "operations": [
        "<string>"
      ],
      "status": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "next": "<string>"
}

Authorizations

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

Query Parameters

limit
default:50
cursor
string
q
string

Query parameter that accepts a raw query string and auto-detects and parses emails, phone numbers (E.164), URLs, domains, and ISO dates

filters
object
fields

Response

200
application/json

OK

The response is of type object.