Update of Anchor Registration
When an anchor updates their data on the platform, this event is sent containing the registration data.
You can use the _links
to navigate directly related resources for this event.
eventType: SponsorUpdatedEvent
Path: /sponsor
Webhook payload object
Key | Type | Description |
---|---|---|
buyerId | integer | Investor identifier. |
sponsorId | integer | Anchor identifier. |
name | string | Name of the anchor. |
governmentId | string | EIN of the anchor. |
companyName | string | Name of the anchor. |
fantasyName | string | DBA name of the anchor. |
foundationDate | long | Founding date of the anchor. |
activityCode | string | CNAE (Economic Activities Classification) of the anchor. |
address | string | Address line 1 of the anchor. |
addressNumber | string | Street number of the anchor. |
addressComplement | string | Address line 2 of the anchor. |
neighborhood | string | Neighborhood of the anchor. |
city | string | City of the anchor. |
state | string | State of the anchor. |
country | string | Country of the anchor. |
zipCode | string | ZIP code of the anchor. |
eventType | string | Event type. |
legalResponsibles | array[object] | Collection containing the legal representatives of this payee. |
legalResponsibles[][name] | string | Name of the legal representative. |
legalResponsibles[][governmentId] | string | SSN of the legal representative. |
legalResponsibles[][type] | string | Relationship of the legal representative to the anchor. Possible values: PARTNER - PartnerSHAREHOLDER - ShareholderADMINISTRATOR - AdministratorDIRECTOR - DirectorCONSULTANT - Consultant |
legalResponsibles[][phone] | string | Phone of the legal representative. |
legalResponsibles[][email] | string | Email of the legal representative. |
legalResponsibles[][birthdayDate] | long | Birthday of the legal represtative. |
legalResponsibles[][sign] | boolean | Whether the legal representative signs for the company. |
_links | object | Resources available through HATEOAS. More information here. Available resources are: approve - Approve anchor.unapprove - Disapprove anchor.update - Update anchor’s information.self - List anchor data.sellers - List all anchors. |
Webhook payload example
{
"buyerId":78676,
"sponsorId":1639274,
"name":"SACADO",
"governmentId":"22874589000179",
"companyName":"SACADO",
"fantasyName":"SACADO",
"foundationDate":1489374000000,
"activityCode":"96025-01",
"address":"Rua A",
"addressNumber":"123",
"addressComplement":"Sala 15",
"neighborhood":"CENTRO",
"city":"São Paulo",
"state":"SP",
"country":"Brazil",
"zipCode":"04190211",
"eventType":"SponsorUpdatedEvent",
"legalResponsibles":[
{
"name":"GILBERTO FERREIRA",
"governmentId":"08398139671",
"type":"PARTNER"
"phone":"+5511985647589",
"email":"[email protected]",
"birthdayDate":"1489374000000",
"sign":true
}
],
"_links":{
"approve":{
"href":"https://zuul.monkey.exchange/v2/buyers/78676/sponsors/1639274/approve",
"type":"POST"
},
"unapprove":{
"href":"https://zuul.monkey.exchange/v2/buyers/78676/sponsors/1639274/unapprove",
"type":"POST"
},
"update":{
"href":"https://zuul.monkey.exchange/v2/buyers/78676/sponsors/1639274",
"type":"PUT"
},
"self":{
"href":"https://zuul.monkey.exchange/v2/buyers/78676/sponsors/1639274",
"type":"GET"
},
"sponsors":{
"href":"https://zuul.monkey.exchange/v2/buyers/78676/sponsors",
"type":"GET"
}
}
}
Updated 7 months ago