GET v1/InvoiceStatuses/{id}

Get detailed information about a OrderStatus.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The id of the OrderStatus.

integer

Required.

Body Parameters

None.

Response Information

Resource Description

The OrderStatus object.

InvoiceStatusDefinition
NameDescriptionTypeAdditional information
ShopOwnerId

Gets or sets the shop owner identifier.

integer

None.

ShopId

Gets or sets the shop identifier.

integer

None.

IsDefaultStatus

Gets or sets a value indicating whether this instance has default status.

boolean

None.

HasActionDate

Gets or sets a value indicating whether this instance has action date.

boolean

Required

ActionDateCaption

Gets or sets the action date caption.

string

Max length: 50

ActionDateMessage

Gets or sets the action date message.

string

Max length: 200

Sequence

Gets or sets the sequence.

integer

Required

Id

Gets or sets the identifier.

integer

Required

BaseInvoiceStatusId

Gets or sets the base invoice status identifier.

integer

None.

InvoiceStatusTypeId

Gets or sets the invoice status type identifier.

integer

None.

Name

Gets or sets the name.

string

Required

Max length: 50

Response Formats

application/json, text/json

Sample:
{
  "ShopOwnerId": 1,
  "ShopId": 1,
  "IsDefaultStatus": true,
  "HasActionDate": true,
  "ActionDateCaption": "sample string 3",
  "ActionDateMessage": "sample string 4",
  "Sequence": 5,
  "Id": 6,
  "BaseInvoiceStatusId": 7,
  "InvoiceStatusTypeId": 8,
  "Name": "sample string 9"
}

application/xml, text/xml

Sample:
<InvoiceStatusDefinition xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>6</Id>
  <BaseInvoiceStatusId>7</BaseInvoiceStatusId>
  <InvoiceStatusTypeId>8</InvoiceStatusTypeId>
  <Name>sample string 9</Name>
  <ShopOwnerId>1</ShopOwnerId>
  <ShopId>1</ShopId>
  <IsDefaultStatus>true</IsDefaultStatus>
  <HasActionDate>true</HasActionDate>
  <ActionDateCaption>sample string 3</ActionDateCaption>
  <ActionDateMessage>sample string 4</ActionDateMessage>
  <Sequence>5</Sequence>
</InvoiceStatusDefinition>