POST api/ReferenceGroup/Values/Create

Create a value for this reference group

Request Information

URI Parameters

None.

Body Parameters

ReferenceGroupItemParm
NameDescriptionTypeAdditional information
auth

string

None.

ReferenceGroupGUID

string

None.

Value

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ReferenceGroupGUID": "sample string 2",
  "Value": "sample string 3",
  "auth": "sample string 1"
}

application/xml, text/xml

Sample:
<ReferenceGroupItemParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Shipper.Models">
  <ReferenceGroupGUID>sample string 2</ReferenceGroupGUID>
  <Value>sample string 3</Value>
  <auth>sample string 1</auth>
</ReferenceGroupItemParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseBase
NameDescriptionTypeAdditional information
IsSuccessful

Used to determine if method call was successful (true) or failure (false)

boolean

None.

ErrorMessage

The error message if method call was not successful

string

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Shipper.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsSuccessful>true</IsSuccessful>
</ResponseBase>