POST api/account/toggleunreferencedreturns

Request Information

URI Parameters

None.

Body Parameters

SetUnreferencedReturnStatusModel
NameDescriptionTypeAdditional information
Enabled

boolean

None.

DaysEnabled

integer

None.

SessionId

string

Required

AccountId

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Enabled": true,
  "DaysEnabled": 2,
  "SessionId": "sample string 3",
  "AccountId": "sample string 4"
}

application/xml, text/xml

Sample:
<SetUnreferencedReturnStatusModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdminProAPI.Models.Account">
  <AccountId>sample string 4</AccountId>
  <SessionId>sample string 3</SessionId>
  <DaysEnabled>2</DaysEnabled>
  <Enabled>true</Enabled>
</SetUnreferencedReturnStatusModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>