Skip to main content
POST
/
connections
/
{id}
/
inbound-webhooks
Register an inbound webhook subscription on a connection
curl --request POST \
  --url https://api.example.com/connections/{id}/inbound-webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "events": [
    "<string>"
  ],
  "external_service_id": "<string>"
}
'
{
  "id": "<string>",
  "connection_id": "<string>",
  "secret_redacted": "<string>",
  "events": [
    "<string>"
  ],
  "disabled": true,
  "created_at": "<string>",
  "updated_at": "<string>",
  "secret": "<string>",
  "tenant_id": "<string>",
  "external_service_id": "<string>",
  "verification_adapter_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.myme.so/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

Path Parameters

id
string
required

Body

application/json
events
string[]
required
Minimum array length: 1
external_service_id
string

Response

Subscription created. The secret field is returned ONCE; subsequent reads redact it.

id
string
required
connection_id
string
required
secret_redacted
string
required
verification_method
enum<string>
required
Available options:
hmac-sha256,
slack,
stripe,
github
events
string[]
required
disabled
boolean
required
created_at
string
required
updated_at
string
required
secret
string
required
tenant_id
string
external_service_id
string
verification_adapter_id
string