POST api/Tags/CreateMultiBatch

Request Information

URI Parameters

None.

Body Parameters

Collection of Tag
NameDescriptionTypeAdditional information
Type

TagType

None.

TagNumber

integer

None.

Weight

decimal number

None.

Tare

decimal number

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Type": 0,
    "TagNumber": 1,
    "Weight": 1.1,
    "Tare": 1.1
  },
  {
    "Type": 0,
    "TagNumber": 1,
    "Weight": 1.1,
    "Tare": 1.1
  }
]

Response Information

Resource Description

RSAGResponseOfBatchCreateResponse
NameDescriptionTypeAdditional information
Messages

Collection of RSAGMessage

None.

ResponseObject

BatchCreateResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Messages": [
    {
      "MessageType": "sample string 1",
      "MessageNumber": "sample string 2",
      "MessageText": "sample string 3",
      "ColumnName": "sample string 4"
    },
    {
      "MessageType": "sample string 1",
      "MessageNumber": "sample string 2",
      "MessageText": "sample string 3",
      "ColumnName": "sample string 4"
    }
  ],
  "ResponseObject": {
    "Status": 0,
    "TagsInformation": [
      {
        "LinkedTag": {
          "Type": 0,
          "TagNumber": 1,
          "Weight": 1.1,
          "Tare": 1.1
        },
        "Status": 0,
        "BatchNumber": 1
      },
      {
        "LinkedTag": {
          "Type": 0,
          "TagNumber": 1,
          "Weight": 1.1,
          "Tare": 1.1
        },
        "Status": 0,
        "BatchNumber": 1
      }
    ]
  }
}