POST v6/api_1169/ResetState

Reset the tracking of POs on the system and lets you request the same POs you allready querried. Can only be used in the test api.

Request Information

URI Parameters

None.

Body Parameters

CommandModel
NameDescriptionTypeAdditional information
UserName

string

None.

Password

string

None.

DatabaseCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "Password": "sample string 2",
  "DatabaseCode": "sample string 3"
}

application/xml, text/xml

Sample:
<CommandModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/V6.models.Entegrasyon.Operasyonlar.CoupaEntegrasyon.Models.Commands">
  <DatabaseCode>sample string 3</DatabaseCode>
  <Password>sample string 2</Password>
  <UserName>sample string 1</UserName>
</CommandModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CommandModel'.

Response Information

Resource Description

ResultModel
NameDescriptionTypeAdditional information
IsSuccessful

boolean

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccessful": true,
  "ErrorMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/V6.models.Entegrasyon.Operasyonlar.CoupaEntegrasyon.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsSuccessful>true</IsSuccessful>
</ResultModel>