Create app connection

Create app connection

Endpoint

POST https://embedworkflow.com/api/v1/app_connections

Request Body

name string, required

Name of resource

app_type string, required

App Type

user_key string, requireddefault: main

User's key

config object, required

App connection configuration

Response

Returns created.

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

Errors

  • 422 - unprocessable entity
Response
1
2
3
4
5
6
7
8
9
10
{
  "id": "0198c2e9-b59c-70b8-ae49-34546e694984",
  "app_type": "gmail",
  "last_used_at": null,
  "last_used_at_string": null,
  "last_used_at_utc": null,
  "name": "My Connection",
  "object": "app_connection",
  "status": "active"
}