GET Artwork/GetSubmittedArtQueueByCustomId?customId={customId}
Retrieves submited item by CustomId
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ArtQueueRequestApi| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id is auto-generated by the system. Can be used to pull submitted item via GetSubmittedArtQueueById endpoint |
integer |
None. |
| Description |
Temporary description until an artwork is generated |
string |
None. |
| LicenseCode |
Check available licenses via GetAvailableLicenses endpoint |
string |
Required field |
| DesignNo | string |
Design # |
|
| Colors | string |
Product / Garment Colors |
|
| OrderPending | boolean |
None. |
|
| RetailerName | string |
Retailer Name / Department |
|
| BlankGoods | boolean |
Are you applying logo to blank goods? |
|
| SupplierId | integer |
Associated Authorized Manufacturers |
|
| AdditionalInfo |
Displayed in the artwork detail |
string |
Additional Information |
| EmailsList |
Separate addresses with commas |
string |
Secondary Email(s) |
| CustomId |
Can be used to pull submitted item via GetSubmittedArtQueueById endpoint |
integer |
Non mandatory Id |
| Upis |
No commas or semicolons accepted in UPI code (comma used as delimiter) |
string |
UPI: Unique Product Identifier |
| ArtFileName |
File name of the uploaded file |
string |
None. |
| ArtFileData | Collection of byte |
None. |
|
| ArtFileId |
Generated by the system. Can be used to download uploaded file via DownloadFileById endpoint |
globally unique identifier |
None. |
| Status |
Shows the current status of the submitted item |
string |
None. |
| Errors |
Errors from processing the submitted item |
string |
None. |
| SelectedMaterialContents |
Check available Material Contents via GetMaterialContents endpoint |
Collection of string |
Separate with commas |
| SelectedLogoApplications |
Check available Logo Applications via GetLogoApplications endpoint |
Collection of string |
Separate with commas |
| SelectedProductCombinations |
See object ArtQueueProductCombinationApi for more details |
Collection of ArtQueueProductCombinationApi |
None. |
| ReassignUpis |
Allows reassigning of existing UPIs |
boolean |
None. |
Response Formats
application/json, text/json
{
"Id": 1,
"Description": "sample string 2",
"LicenseCode": "sample string 3",
"DesignNo": "sample string 4",
"Colors": "sample string 5",
"OrderPending": true,
"RetailerName": "sample string 7",
"BlankGoods": true,
"SupplierId": 1,
"AdditionalInfo": "sample string 9",
"EmailsList": "sample string 10",
"CustomId": 1,
"Upis": "sample string 11",
"ArtFileName": "sample string 12",
"ArtFileData": "QEA=",
"ArtFileId": "588ea2fe-41d0-4298-8832-f3536cf8e47a",
"Status": "sample string 13",
"Errors": "sample string 14",
"SelectedMaterialContents": [
"sample string 1",
"sample string 2"
],
"SelectedLogoApplications": [
"sample string 1",
"sample string 2"
],
"SelectedProductCombinations": [
{
"CategoryCode": "sample string 1",
"SubcategoryCode": "sample string 2",
"DistributionChannels": [
"sample string 1",
"sample string 2"
]
},
{
"CategoryCode": "sample string 1",
"SubcategoryCode": "sample string 2",
"DistributionChannels": [
"sample string 1",
"sample string 2"
]
}
],
"ReassignUpis": true
}