Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

Como registrar um WebHook para receber as atualizações de eventos de consentimento

Para se manter atualizado sobre qualquer evento no ciclo de vida do consentimento, você deve registrar uma API de webhook para receber as informações de atualização.

...

Registering a WebHook to receive consent event updates

 

To stay current on any event in the consent lifecycle, you must register a webhook API to receive the update information.

The webhook endpoint must be in the POST method , under https. The domain and URI can be in whatever format you have on your platform, for the examples below we will consider the POST endpoint examplehttps://www.my-domain.com/webhook

Depois de implementar esta API em sua plataforma, você precisa registrá-la para receber notificações por meio de nossa API de registro de webhook.

Mas para acessar essa API, você precisa realizar uma etapa anterior, que consiste em se autenticar usando as credenciais do seu aplicativo. Descreveremos o passo a passo neste tópico.

...

After implementing this API on your platform, you need to register it to receive notifications via our webhook registration API.

But to access this API, you need to perform a previous step, which is to authenticate using your application's credentials. We will describe the step by step in this topic.

 

Access Token Request (using My First App credentials)

Code Block
curl --location --request POST 'https://onboard.smartkeys.celcoin.dev.fsapps.io/api/portal/onboard/v1/token' \ --header 'Content- Type: application/json' \ --data-raw '{	"client_id":"64b51075-45bf-46cc-aed4-29b69b51816d", "client_secret": "9257b897-01ca- 4ebd-9fd4-************"}'

...

 

Access Token Response

Code Block
{

"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJSY0hYOGxFRl93QmxFNUF3eXY2TV9JQUFEUm1pSzV5SWlnW "expires_in": 3600,

"refresh_expires_in": 0, "token_type": "Bearer", "not-before-policy": 0, "scope": "email profile"

}

 

Tip

...

Now you need to get the contents of the "access_token"

...

Info

Gerado o access_token, vamos registrar seu webhook usando a solicitação abaixo.

...

parameter and include it as an Authentication Bearer header for all future API calls.

 

Info

Once the access_token is generated, let's register your webhook using the request below.

 

Webhook Registration API

Code Block
curl --location 'https://onboard.smartkeys.celcoin.dev.fsapps.io/api/smart-keys/interceptors' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{your_generated_access_token_here}}' \
--data '{
    "endpoint": "https://www.my-domain.com/webhook",
    "isAuthenticated": false,
    "authenticationType": "",
    "user": "",
    "password": "",
    "type": "DATA"
}'

 

Note

A solicitação retornará os seguintes códigos de status Http.The request will return the following Http status codes.

 

HTTP Status Code

 

201

Webhook succesfully registered.

400

Bad Request - error at request field validations.

401

The used token is not allowed to access the resource.

 

Info

Isso é tudo! Agora, a qualquer atualização de status de consentimento, o API That is all! Now, on any consent status update, the POST https://www.my-domain.com/webhook receberá uma solicitação com o campo body conforme abaixo: API will get a request with the body field as below:

 

Code Block
{
  "event": "before:consent:create",
  "data": { ... }
}

 

 

...

Evento

...

Info

...

O campo data traz detalhes sobre o evento de consentimento. Já o evento de campo traz o novo status de consentimento, que pode ser uma das possibilidades abaixo.

The data field provides details about the consent event. The field event brings the new consent status, which can be one of the possibilities below.

 

Event

Details

before : consent : create

Recebemos uma solicitação para uma criação de consentimento

We received a request for a consent build.

after : consent : create

Todos os campos de consentimento foram validados, está seguindo todos os padrões necessários e foi criado

All consent fields have been validated, it is following all necessary standards and has been created.

consent : approved

O consentimento foi aprovado pelo usuário

Consent has been approved by the user.

consent : rejected

O consentimento foi rejeitado pelo usuário

Consent was rejected by the user.

consent : expired

O consentimento expirou. Não foi aprovado ou rejeitado após 60 minutos da criação OU após aprovação/rejeição não foi consumido em 70 minutos

The consent has expired. Was not approved or rejected after 60 minutes of creation OR after approval/rejection was not consumed within 70 minutes.

consent : revoke

Consentimento revogado pelo usuário (geralmente após aprovação

User revoked consent (usually after approval)

 

Info
Testando o

Testing the webhook

...

 

To test the WebHook process, it can also be configured in the Endpoint Management section of the development portal. We will use the WebHook Site (https://webhook.site/ ) para simular o processo. O site irá gerar um URL WebHook conforme mostrado abaixo.to simulate the process. The site will generate a WebHook URL as shown below.

 

...

 

Copie a URL do WebHook gerada e registre-se nas Configurações do aplicativo na seção "Gerenciamento de endpoints". Você deve inserir como método POST e receberá um Json no body.

Copy the generated WebHook URL and register in the Application Settings under the "Endpoint Management" section. You must insert it as a POST method and you will receive a Json in the body.

 

...

 

Note

Em seguida, clique no botão SalvarThen click on the Save button .