Get the discount collection
get
/api/v1/discounts/collection
{basePath}/discounts/collection?orgShortName=tfoinc&locRef=fdmnh144&rvcRef=42
The discount collection is a list of discounts that can be used when interacting with the checks endpoint. The API returns a collection of discounts that can be used at the specified revenue center.Request
Supported Media Types
- application/json
Query Parameters
-
LocRef(required): string
The location identifier. Will be forced to lower-case.
-
OrgShortName(required): string
The organization identifier. Will be forced to lower-case.
-
RvcRef(required): string
The revenue center identifier.
Header Parameters
-
If-Modified-Since: string
If-Modified-Since HTTP header
-
If-None-Match: string
If-None-Match HTTP header
Response
Supported Media Types
- application/json
200 Response
A collection of discounts
Headers
-
ETag: string
The current entity-tag for the selected representation. See RFC 7232 Section 2.3
-
Last-Modified: string
A timestamp indicating the date and time at which the origin server believes the selected representation was last modified. See RFC 7232 Section 2.2
Root Schema : DiscountCollection
Type:
object
Definition of a discount that can be applied to a transaction.
Show Source
-
items:
array items
-
OrgLocRvcProperties:
object OrgLocRvcProperties
A collection of properties for orgShortName, locRef and rvcRef
Nested Schema : items
Type:
Show Source
array
-
Array of:
object DiscountItem
Definition of a discount that can be applied to a transaction.
Nested Schema : OrgLocRvcProperties
Type:
object
A collection of properties for orgShortName, locRef and rvcRef
Show Source
-
locRef(required):
string
Location identifierExample:
store66
-
orgShortName(required):
string
Organization identifierExample:
mymeal
-
rvcRef(required):
integer
Revenue Center identifierExample:
2
Nested Schema : DiscountItem
Type:
object
Definition of a discount that can be applied to a transaction.
Show Source
-
ConsumerContentProperties:
object ConsumerContentProperties
A collection of consumer based content
-
discountId(required):
integer
Discount identifierExample:
13
-
extensions:
object ExtensionData
Additional Properties Allowed: additionalPropertiesContainer for extension data
-
name:
object TranslatedString
Additional Properties Allowed: additionalPropertiesA string that contains translations into multiple languages **Example** `{ "en-US": "coffee", "de-DE": "kaffee", "ar-AR": "????????" }`
-
type(required):
string
Allowed Values:
[ "amount", "percentage" ]
Discount typeExample:amount
-
value:
number
The amount or percentage of the discount. If value is not present or is zero, then the value must be provided when the discount is added to a check.Example:
5
Nested Schema : ConsumerContentProperties
Type:
object
A collection of consumer based content
Show Source
-
consumerDescription:
object TranslatedString
Additional Properties Allowed: additionalPropertiesA string that contains translations into multiple languages **Example** `{ "en-US": "coffee", "de-DE": "kaffee", "ar-AR": "????????" }`
-
consumerName:
object TranslatedString
Additional Properties Allowed: additionalPropertiesA string that contains translations into multiple languages **Example** `{ "en-US": "coffee", "de-DE": "kaffee", "ar-AR": "????????" }`
-
images:
array images
Nested Schema : ExtensionData
Type:
object
Additional Properties Allowed
Show Source
Container for extension data
Nested Schema : TranslatedString
Type:
object
Additional Properties Allowed
Show Source
A string that contains translations into multiple languages
**Example**
`{ "en-US": "coffee", "de-DE": "kaffee", "ar-AR": "????????" }`
Example:
{
"en-US":"Coffee",
"de-DE":"Kaffee",
"ar-AR":"????????"
}
Nested Schema : images
Type:
Show Source
array
-
Array of:
object ImageLink
Represents a link to an image
Nested Schema : ImageLink
Type:
object
Represents a link to an image
Show Source
-
altText:
string
Alt text for the imageExample:
pizza
-
description:
string
Description text for the image
-
index:
string
Unique identifier for the image
-
isCloudImage:
boolean
-
size:
string
Image size
-
url(required):
string
URL for the image.Example:
https://oracleObjectStore.com/images/coffee822815.jpg
304 Response
304 Not Modified
Headers
-
ETag: string
The current entity-tag for the selected representation. See RFC 7232 Section 2.3
-
Last-Modified: string
A timestamp indicating the date and time at which the origin server believes the selected representation was last modified. See RFC 7232 Section 2.2
400 Response
400 Bad Request
Root Schema : ConfigurationApiProblemDetails
Type:
object
Problem details is used as standard model for reporting details when HTTP error status code is returned. This definition is defined by [RFC7807](https://tools.ietf.org/html/rfc7807).
The content type for this response is `application/problem+json`
Show Source
-
details:
string
A human-readable explanation specific to this occurrence of the problem.Example:
The OrgShortName value is required.
-
instance:
string
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.Example:
required_value_missing
-
title:
string
A short, human-readable summary of the problem type.Example:
Required value not specified.
-
type:
string
A URI reference that identifies the problem type. When this member is not present, its value is assumed to be "about:blank".Example:
error:validation
Examples
Example Request Body
Not applicable for this endpoint.
Example Response Body
The following example shows the contents of the response body in JSON format:
{
"orgShortName": "mymeal",
"locRef": "store66",
"rvcRef": 2,
"items": [
{
"discountId": 13,
"name": {
"en-US": "Coffee",
"de-DE": "Kaffee",
"ar-AR": "قهوة"
},
"type": "amount",
"value": 5,
"consumerName": {
"en-US": "Coffee",
"de-DE": "Kaffee",
"ar-AR": "قهوة"
},
"consumerDescription": {
"en-US": "Coffee",
"de-DE": "Kaffee",
"ar-AR": "قهوة"
},
"images": [
{
"index": "string",
"url": "https://oracleObjectStore.com/images/coffee822815.jpg",
"altText": "pizza",
"description": "string",
"isCloudImage": true,
"size": "string"
}
],
"extensions": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
}
}
]
}
}