GET
/
v1
/
vault
/
connections
curl --location --request GET 'https://api.picaos.com/v1/vault/connections' \
--header 'x-pica-secret: YOUR_API_KEY'
{
  "connections": [
    {
      "_id": "conn_123",
      "platformVersion": "2.0",
      "name": "My Connection",
      "key": "connection_key",
      "identity": "user_123",
      "identityType": "user",
      "platform": "salesforce",
      "active": true
    }
  ]
}

Query Parameters

_id
string

The Connection ID

platformVersion
string

The platform version

name
string

The Connection name

key
string

The Connection Key

identity
string

The Connection identifier

identityType
string

The Identity type (user, team, organization)

platform
string

The platform

active
boolean

The Connection status

Response

connections
Connection[]

Array of Connection objects

curl --location --request GET 'https://api.picaos.com/v1/vault/connections' \
--header 'x-pica-secret: YOUR_API_KEY'
{
  "connections": [
    {
      "_id": "conn_123",
      "platformVersion": "2.0",
      "name": "My Connection",
      "key": "connection_key",
      "identity": "user_123",
      "identityType": "user",
      "platform": "salesforce",
      "active": true
    }
  ]
}