POST api/v2/account/vincular

Request Information

URI Parameters

None.

Body Parameters

VincularClienteBindingModel
NameDescriptionTypeAdditional information
TenantMatriz

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "TenantMatriz": "683ff341-d88d-4017-b79e-0eb6b2a24143"
}

application/xml, text/xml

Sample:
<VincularClienteBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models.v2.BindingModels">
  <TenantMatriz>683ff341-d88d-4017-b79e-0eb6b2a24143</TenantMatriz>
</VincularClienteBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RegisterAccountResult
NameDescriptionTypeAdditional information
VinculoFormulaCerta

boolean

None.

Succeeded

boolean

None.

Errors

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "VinculoFormulaCerta": true,
  "Succeeded": true,
  "Errors": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<RegisterAccountResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models">
  <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Errors>
  <Succeeded>true</Succeeded>
  <VinculoFormulaCerta>true</VinculoFormulaCerta>
</RegisterAccountResult>