POST
/
v1
/
subscriptions
/
{subscription}
curl --request POST \
  --url https://api.base39.io/v1/subscriptions/{subscription} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Loan created webhook",
  "events": [
    {
      "eventType": "loan.created"
    }
  ],
  "notification": {
    "url": "https://api.example.com/webhooks",
    "headers": {
      "Authorization": "key-12345"
    }
  }
}'
{
  "id": "subs_5f92f01728e009f403d8502e",
  "name": "Loan created webhook",
  "events": [
    {
      "eventType": "loan.created"
    }
  ],
  "notification": {
    "url": "https://api.example.com/webhooks",
    "headers": {
      "Authorization": "key-12345"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Idempotency-Key
string

Chave única de idempotência para evitar duplicação de requisições.

Path Parameters

subscription
string
required

ID da assinatura

Body

application/json

Este objeto representa uma assinatura.

name
string

Nome da assinatura.

Example:

"Loan created webhook"

events
object[]

Lista de eventos.

notification
object

Response

200 - application/json
Retorna o objeto `Subscription` se a atualização for bem-sucedida. Retorna um erro se os parâmetros de atualização forem inválidos.

Este objeto representa uma assinatura.

id
string

Identificador exclusivo para o objeto.

Example:

"subs_5f92f01728e009f403d8502e"

name
string

Nome da assinatura.

Example:

"Loan created webhook"

events
object[]

Lista de eventos.

notification
object