customers itemaliases (http://api.3plcentral.com/rels/customers/itemaliases)
Resource:
Collection: of itemalias
C# Rel Const:
Rels.CustomerSvc.ItemAliasList
URI template:
{id}/itemaliases{?pgsiz,pgnum,rql,sort}
Obtain URI from:
Success status: 200
Name (* = required) Data Type Description
id * int
pgsiz int max records to return per response; use "next" or "prev" link to paginate
pgnum int considering pgsiz, returns the pgnum-th page, 1-indexed
rql string see RQL documentation
sort string see RQL documentation
Type Description
TotalResults int
ResourceList IList<Customer.Models.ItemAlias>
AliasIdentifier Generic.Models.ItemIdentifier
Sku string
Id int
Active bool
Description string
Details IEnumerable<Customer.Models.AliasDetail>
ItemIdentifier Generic.Models.ItemIdentifier
Sku string
Id int
Qty decimal
Description string
ItemDeactivated bool
Sample accept: application/hal+json
{
  "totalResults": 1,
  "_embedded": {
    "http://api.3plCentral.com/rels/customers/itemalias": [
      {
        "aliasIdentifier": {
          "sku": "str",
          "id": 2
        },
        "active": true,
        "description": "str",
        "details": [
          {
            "itemIdentifier": {
              "sku": "str",
              "id": 2
            },
            "qty": 1.0,
            "description": "str",
            "itemDeactivated": true
          }
        ]
      }
    ]
  }
}
Success status: 201
Name (* = required) Data Type Description
id * int
Type Description
AliasIdentifier Generic.Models.ItemIdentifier
Sku string
Id int
Active bool
Description string
Details IEnumerable<Customer.Models.AliasDetail>
ItemIdentifier Generic.Models.ItemIdentifier
Sku string
Id int
Qty decimal
Description string
ItemDeactivated bool
Sample content-type: application/hal+json
{
  "aliasIdentifier": {
    "sku": "str",
    "id": 2
  },
  "active": true,
  "description": "str",
  "details": [
    {
      "itemIdentifier": {
        "sku": "str",
        "id": 2
      },
      "qty": 1.0,
      "description": "str",
      "itemDeactivated": true
    }
  ]
}
Type Description
AliasIdentifier Generic.Models.ItemIdentifier
Sku string
Id int
Active bool
Description string
Details IEnumerable<Customer.Models.AliasDetail>
ItemIdentifier Generic.Models.ItemIdentifier
Sku string
Id int
Qty decimal
Description string
ItemDeactivated bool
Sample accept: application/hal+json
{
  "aliasIdentifier": {
    "sku": "str",
    "id": 2
  },
  "active": true,
  "description": "str",
  "details": [
    {
      "itemIdentifier": {
        "sku": "str",
        "id": 2
      },
      "qty": 1.0,
      "description": "str",
      "itemDeactivated": true
    }
  ]
}
Delete item aliases from a list of provided alias ids for a specific customer. Error messaging will be returned for each
failed deletion. Aliases that are active will not be deleted.
Success status: 204
Name (* = required) Data Type Description
id * int The customer id for the aliases being deleted
rql string see RQL documentation

This documentation is subject to change, and is updated often and without warning. The models documented may or may not be available to users now or in the future. Use this documentation at your own risk.
Contact api@3plcentral.com with any questions about this documentation.