Allows you to unhide ended items.
Header | Data Type | Valid Values | Required | Description |
---|---|---|---|---|
Content-Type | string | application/json | YES | The format your data will be sent to our site. |
X-DevKey | string | string | YES | The devkey assigned to the developer. |
X-AccessToken | string | string | YES | The token acquired from a POST to Users/AccessToken. |
Parameter | Data Type | Valid Values | Description |
---|---|---|---|
itemIds | string | Comma-separated item ids | List of item ids to unhide. Limited to 100 per request. Ex: itemIds=12345,67890 |
If itemIDs is not provided, you will receive a 400 Bad Request
If one of the itemIDs cannot be parsed into an integer, you will receive a 400 Bad Request
and a message indicating which item ID was invalid.
If the number of itemIDs provided exceeds 100, you will receive a 403 Forbidden
If there are no errors with the input parameters, this call will respond with a 200 OK
and the following data as serialized JSON
Parameter | Data Type | Valid Values | Description |
---|---|---|---|
ErrorCount | integer | positive # | The count of items that returned an error and were not removed from hidden items |
ErrorItems | Array | Array of ErrorItem objects (see below) | The list of items that returned an error and were not removed from hidden items |
SuccessCount | integer | positive # | The count of items successfully removed from hidden items |
SuccessItems | Array | Array of SuccessItem Objects (see below) | The list of items successfully removed from hidden items |
Parameter | Data Type | Valid Values | Description |
---|---|---|---|
ErrorMessage | string | string | The error message for the item that failed to be removed from hidden items |
ItemID | integer | positive # | The id of the item that failed to be removed from hidden items |
Parameter | Data Type | Valid Values | Description |
---|---|---|---|
ItemID | integer | positive # | The id of the item that was successfully removed from hidden items |