Análise de Score de Cedente (Supplier Trust)

Para financiadores que contrataram o módulo de análise do Supplier Trust, quando um cedente tem seu cadastro revisado e analisado na plataforma é enviado este evento contendo os dados da atualização de score.

Você pode utilizar os _links para navegar nos recursos ligados diretamente a este evento.

EventType: BuyerSellerScoreChangedEvent
Path: /seller

Webhook payload object

ChaveTipoDescrição
buyerIdintegerIdentificador do investidor.
buyerGovernmentIdstringCNPJ do investidor.
sellerIdintegerIdentificador do cedente.
sellerGovernmentIdstringCNPJ do cedente.
finalScoreintegerScore final calculado.
scoreChangedAtdateData de alteração do score.
eventTypestringNome do evento.
scoresarray[object]Coleção contendo os scores por camada.
scores[][layerId]stringIdentificador da camada de avaliação.
scores[][score]integerScore atribuído à camada.
_linksobjectRecursos disponíveis através de HATEOAS. Recursos disponíveis: score, documents, approve, unapprove, update, self, sellers.

Webhook payload example

{
    "buyerId": 537070913,
    "buyerGovernmentId": "25297658000138",
    "sellerId": 1676659615,
    "sellerGovernmentId": "22874589000179",
    "finalScore": -50,
    "scoreChangedAt": "2025-10-08T02:38:54.733-03:00",
    "eventType": "BuyerSellerScoreChangedEvent",
    "scores": [
        { "layerId": "BIOMETRIC_VERIFICATION", "score": 30 },
        { "layerId": "COMPANY_DOCUMENTS_VERIFICATION", "score": 10 },
        { "layerId": "GOVERNMENT_ID_STATUS", "score": 20 },
        { "layerId": "REPRESENTATIVES_DOCUMENTS_VERIFICATION", "score": 0 },
        { "layerId": "DIGITAL_CERTIFICATE", "score": 0 },
        { "layerId": "COMPANY_EMAIL", "score": -10 },
        { "layerId": "DIGITAL_PRESENCE", "score": 0 },
        { "layerId": "REPRESENTATIVES_VERIFICATION", "score": -100 },
        { "layerId": "ATTORNEY", "score": 0 }
    ],
    "_links": {
        "score": {
            "href": "https://gateway.monkey.credit/v2/buyers/25297658000138/sellers/22874589000179/scores",
            "type": "GET"
        },
        "documents": {
            "href": "https://gateway.monkey.credit/v2/buyers/537070913/sellers/1676659615/documents",
            "type": "GET"
        },
        "approve": {
            "href": "https://gateway.monkey.credit/v2/buyers/537070913/sellers/1676659615/approve",
            "type": "POST"
        },
        "unapprove": {
            "href": "https://gateway.monkey.credit/v2/buyers/537070913/sellers/1676659615/unapprove",
            "type": "POST"
        },
        "update": {
            "href": "https://gateway.monkey.credit/v2/buyers/537070913/sellers/1676659615",
            "type": "PUT"
        },
        "self": {
            "href": "https://gateway.monkey.credit/v2/buyers/537070913/sellers/1676659615",
            "type": "GET"
        },
        "sellers": {
            "href": "https://gateway.monkey.credit/v2/buyers/537070913/sellers",
            "type": "GET"
        }
    }
}