Item/GetQuotaReport

Summary

These endpoint will let you:

  1. Get all available quotas for all items.

 

EndPoints:

  • Item/GetQuotaReport

Response

Field

Data Type

Definition

ItemCode

 String

 Unique code provided to the item of an event.

Name

String

 Name of the item

Quota

Integer

Number of items that can be sold at an event.

QuotaUsed

Integer

Number of items sold at an event

Base URL

The base URL for all API endpoints is:

https://bridge.cdsreg.com/

Item/GetQuotaReport 

  • URL: https://bridge.cdsreg.com/Item/GetQuotaReport

  • Method: Get

  • Parameters

    • Auth Key: Authorization Key needed to call API endpoint.

Example Request:

curl -X 'GET' \ 'https://bridge.cdsreg.com/Item/GetQuotaReport?AuthKey=(Omitted)' \ -H 'accept: text/plain'

Example Response:

{ "RecordCount": 0, "StatusCode": 0, "ReturnMessages": [ "string" ], "Success": true, "OperationId": "string", "QuotaReportDtos": [ { "ItemCode": "string", "Name": "string", "Quota": 0, "QuotaUsed": 0 } ] }

Error Responses

  • 400 Bad Request:

    • If [describe the error condition].

Example Error Response:

{ "RecordCount": 0, "StatusCode": 400, "ReturnMessages": [ "INVALID AUTH KEY" ], "Success": false, "OperationId": "4739ef76fa187cac9de91dfd8fe829c7", "RegRecords": [] }

 

Related content