Retrieve app connection

Retrieve app connection

Endpoint

GET https://embedworkflow.com/api/v1/app_connections/{id}

Path Parameters

id string, required

System-generated unique identifier

Query Parameters

user_key string, optional

Unique user identifier

Response

Returns successful.

Response Properties

id string

System-generated unique identifier

app_type string

Type of application being connected

last_used_at string

Last used at in specified timezone

last_used_at_string string

Last used at formatted as human-readable string

last_used_at_utc string

Last used at in UTC

name string

Name of the app connection

object string

Object type identifier

status string

Current status of the app connection

Response
1
2
3
4
5
6
7
8
9
10
{
  "id": "019add30-71e6-75d8-b2f0-8e32b0adfd1c",
  "app_type": "slack",
  "last_used_at": null,
  "last_used_at_string": null,
  "last_used_at_utc": null,
  "name": "Connection 2",
  "object": "app_connection",
  "status": "active"
}