Skip to main content
GET
/
automations
/
{automation_id}
Get an automation
curl --request GET \
  --url https://api.qonversion.io/v4/automations/{automation_id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "automation",
  "id": "auto-abc123",
  "url": "/v4/automations/auto-abc123",
  "name": "Welcome Flow",
  "caption": "Sends a welcome message to new users",
  "status": "active",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication using the project Secret Key (prefixed with sk_, or test_sk_ for sandbox). All v4 public endpoints require the Secret Key — see Authentication. Never expose the Secret Key in client-side code.

Path Parameters

automation_id
string
required

Automation identifier.

Maximum string length: 256
Pattern: ^[a-zA-Z0-9._-]+$

Response

Automation details.

object
enum<string>
required

Always "automation".

Available options:
automation
id
string
required

Unique automation identifier.

Example:

"auto-abc123"

url
string
required

Canonical API path for this automation.

Example:

"/v4/automations/auto-abc123"

name
string
required

Human-readable name of the automation.

Example:

"Welcome Flow"

caption
string
required

Optional description of the automation.

Example:

"Sends a welcome message to new users"

status
string
required

Lifecycle status of the automation.

Example:

"active"

data
object
required

Arbitrary JSON object containing automation configuration.