Update general account card

You use this method to update a general account card.

Request method

PUT

Request url

https://ponte.venice.be/webconnect/api/{DossierId}/GeneralAccount?{Key}={KeyValues}

Context identification

Identification Description
DossierId The unique identifier of the dossier.

Parameters

Parameter Description
{Key} The available keys to seek one or more General accounts:
  • SystemNumber={SystemNumber}: Seek general account card by system number.
  • Number={Number}: Seek general account card by number.
  • SyncReference={SyncReference}: Seek general account card by synchronization reference.
Example: Update the general account card with number '110001' in dossier 'Demo' and set the Alias to Al101.
https://ponte.venice.be/webconnect/api/Demo/GeneralAccount?Number=110001

Request header

See request header.

Request body

Structure

Request (object)

Examples

{
  "Request": {
    "GeneralAccounts": {
      "GeneralAccount": [
        {
          "Fields" : {
            "Alias": "Al101"
          }
        }
      ]
    }
  }
}
<?xml version="1.0" encoding="utf-8"?>
<Request>
  <GeneralAccounts>
    <GeneralAccount>
      <Fields>
        <Alias>Al101</Alias>
      </Fields>
    </GeneralAccount>
  </GeneralAccounts>
</Request>

Http status

See http status.

Response body

-