GET
/
v1
/
subscriptions
/
available
curl --request GET \
  --url https://api.base39.io/v1/subscriptions/available \
  --header 'Authorization: Bearer <token>'
[
  {
    "eventType": "loan.created"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
Um array de itens. Cada entrada no array é um objeto que possui uma string. Essa solicitação nunca deve retornar um erro.
eventType
string

Nome do evento a ser utilizado na subscrição.

Example:

"loan.created"