POST {folder}/SacadoExcluido/{token}/{colecao}/{campo}/{orderBy}/{pageSize}/{pageNumber}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Default value is auth |
|
| colecao | integer |
None. |
|
| campo | integer |
None. |
|
| orderBy | integer |
None. |
|
| pageSize | integer |
None. |
|
| pageNumber | integer |
None. |
|
| folder | string |
None. |
Body Parameters
SacadoExcluidoInsertModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CdSacado | string |
Required String length: inclusive between 0 and 20 |
|
| CdGrupo | integer |
None. |
|
| NrCNPJ | string |
String length: inclusive between 0 and 14 |
Request Formats
application/json, text/json
Sample:
{
"CdSacado": "sample string 1",
"CdGrupo": 2,
"NrCNPJ": "sample string 3"
}
application/xml, text/xml
Sample:
<SacadoExcluidoInsertModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api_Integracao.Models"> <CdGrupo>2</CdGrupo> <CdSacado>sample string 1</CdSacado> <NrCNPJ>sample string 3</NrCNPJ> </SacadoExcluidoInsertModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SacadoExcluido| Name | Description | Type | Additional information |
|---|---|---|---|
| IdSacadoExcluido | integer |
None. |
|
| CdSacado | string |
Required String length: inclusive between 0 and 20 |
|
| CdGrupo | integer |
None. |
|
| DsNome | string |
String length: inclusive between 0 and 255 |
|
| NrCNPJ | string |
String length: inclusive between 0 and 14 |
|
| DsFantasia | string |
String length: inclusive between 0 and 255 |
Response Formats
application/json, text/json
Sample:
{
"IdSacadoExcluido": 1,
"CdSacado": "sample string 2",
"CdGrupo": 3,
"DsNome": "sample string 4",
"NrCNPJ": "sample string 5",
"DsFantasia": "sample string 6"
}
application/xml, text/xml
Sample:
<SacadoExcluido xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api_Integracao.Models"> <CdGrupo>3</CdGrupo> <CdSacado>sample string 2</CdSacado> <DsFantasia>sample string 6</DsFantasia> <DsNome>sample string 4</DsNome> <IdSacadoExcluido>1</IdSacadoExcluido> <NrCNPJ>sample string 5</NrCNPJ> </SacadoExcluido>