Skip to main content
GET
/
api
/
v2
/
public
/
slug
/
:slug
/
config
/
:config_id
curl -X GET "https://app.refold.ai/api/v2/public/slug/{slug}/config/{config_id}" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "linked_account_id: YOUR_LINKED_ACCOUNT_ID"
{
  "slug": "hubspot",
  "config_id": "user_12345",
  "field_errors": [],
  "fields": [
    { "id": "699fec7a5bd27ed2af7243ad", "name": "Select", "field_type": "select" }
  ],
  "workflows": [
    { "id": "699d8648a81ba363578cc2f4", "name": "Sync Contacts", "enabled": true }
  ]
}
Retrieve an installed config for an app and a specific config_id. Returns the fields and workflows for the installation. (To use the default config for a linked account, omit the ID — see Get Config.)

Authentication

Configs are scoped to a linked account via the linked_account_id header.
x-api-key
string
required
Your Refold API key.
linked_account_id
string
required
The linked account.

Path Parameters

slug
string
required
The app slug. Example: hubspot
config_id
string
required
The config ID.

Response

slug
string
The app slug.
config_id
string
The config ID.
fields
array
Configurable fields.
workflows
array
Workflows, each {id, name, description, enabled}.
field_errors
array
Datasource resolution errors, if any.
{
  "slug": "hubspot",
  "config_id": "user_12345",
  "field_errors": [],
  "fields": [
    { "id": "699fec7a5bd27ed2af7243ad", "name": "Select", "field_type": "select" }
  ],
  "workflows": [
    { "id": "699d8648a81ba363578cc2f4", "name": "Sync Contacts", "enabled": true }
  ]
}
curl -X GET "https://app.refold.ai/api/v2/public/slug/{slug}/config/{config_id}" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "linked_account_id: YOUR_LINKED_ACCOUNT_ID"