POST
/
shareholders
/
{shareholderId}
/
relations
/
{relationId}
/
promote
Promote a shareholder relation
curl --request POST \
  --url https://api.syntage.com/shareholders/{shareholderId}/relations/{relationId}/promote \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "name": "JUAN MANUEL PEREZ GONZALEZ",
  "rfc": "PEIC211118IS0",
  "datasources": [
    {
      "name": "sat"
    },
    {
      "name": "rpc"
    }
  ]
}'
{
  "@type": "ShareholderPromotedResponse",
  "id": "91ab5678-1234-5678-9abc-def012345678",
  "name": "JUAN MANUEL PEREZ GONZALEZ",
  "rfc": "PEIC211118IS0",
  "onboardingUrl": "https://api.syntage.com/onboarding/91ab5678-1234-5678-9abc-def012345678"
}

Authorizations

X-API-Key
string
header
required

Your API key is available in the Production and Sandbox dashboards.

Path Parameters

shareholderId
string<uuid>
required

The shareholder ID

relationId
string<uuid>
required

The relation ID

Body

application/json

Response

200
application/ld+json

Shareholder Relation promoted successfully

The response is of type object.