POST api/SucursalSistema_Bulk

Request Information

URI Parameters

None.

Body Parameters

Collection of SucursalSistemaRequest
NameDescriptionTypeAdditional information
SucursalId

integer

None.

SistemaId

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "SucursalId": 1,
    "SistemaId": 1
  },
  {
    "SucursalId": 1,
    "SistemaId": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfSucursalSistemaRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.IO">
  <SucursalSistemaRequest>
    <SistemaId>1</SistemaId>
    <SucursalId>1</SucursalId>
  </SucursalSistemaRequest>
  <SucursalSistemaRequest>
    <SistemaId>1</SistemaId>
    <SucursalId>1</SucursalId>
  </SucursalSistemaRequest>
</ArrayOfSucursalSistemaRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SucursalSistemaResponse
NameDescriptionTypeAdditional information
responseCode

integer

None.

responseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "responseCode": 1,
  "responseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<SucursalSistemaResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.IO">
  <responseCode>1</responseCode>
  <responseMessage>sample string 2</responseMessage>
</SucursalSistemaResponse>