TAG LINE
TAG LINE
SMALL TITLE

Discount Promo Code

(API Version v8)


What can you do with DiscountPromoCode?


Properties

Property Details
identity
READ-ONLY
"identity": 15
Type: Number
This is the unique numeric identifier for the DiscountPromoCode
ownerId
READ-ONLY
"ownerId": 9
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
name
"name": "Hello World"
Type: String
promoDescription
"promoDescription": "Hello World"
Type: String
discountStart
"discountStart": "2021-04-26T15:25:27.587Z"
Type: Date
Date and time values are specified in the ISO 8601 format.
discountEnd
"discountEnd": "2021-04-26T15:25:27.587Z"
Type: Date
Date and time values are specified in the ISO 8601 format.
isActive
"isActive": true
Type: Boolean
isProrated
"isProrated": true
Type: Boolean
isNegativeAllowed
"isNegativeAllowed": true
Type: Boolean


Patch Types

The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.

PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the DiscountPromoCode object.

Standard PATCH objects:

  • discountPromoCodeCurrency - create, update, delete

DataFlow PATCH objects:

  • discountPromoCode - create, update, delete
  • discountPromoCodeCurrency - create, update, delete

End Points

DELETEDiscount/PromoCode/{id}
Delete an instance of the DiscountPromoCode object. Upon successful delete, this API will return a record of all of the related objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system.
{id}Unique identifier for the DiscountPromoCode object.
Delete an instance of the DiscountPromoCode object.
DELETE Discount/PromoCode/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "delete",
    "results": {
        "totalCount": 4,
        "items": [
            {
                "identity": 1,
                "action": "deleted",
                "dtoTypeKey": "discountPromoCode"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETDiscount/PromoCode/
Retrieve all of the DiscountPromoCode objects.
Retrieve all of the DiscountPromoCode objects.
GET Discount/PromoCode/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 12,
            "ownerName": "Sample Text Data",
            "name": "Sample Text Data",
            "promoDescription": "Sample Text Data",
            "discountStart": "2021-04-26T15:25:27.587Z",
            "discountEnd": "2021-04-26T15:25:27.587Z",
            "isActive": true,
            "isProrated": true,
            "isNegativeAllowed": true
        }
    ]
}
GETDiscount/PromoCode/Paged
Retrieve all of the DiscountPromoCode objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints.
Retrieve all of the DiscountPromoCode objects in a paged fashion.
GET Discount/PromoCode/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 18,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "promoDescription": "Sample Text Data",
                "discountStart": "2021-04-26T15:25:27.587Z",
                "discountEnd": "2021-04-26T15:25:27.587Z",
                "isActive": true,
                "isProrated": true,
                "isNegativeAllowed": true
            }
        ]
    }
}
GETDiscount/PromoCode/Paged/Detail
Retrieve all of the DiscountPromoCode objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
Retrieve all of the DiscountPromoCode objects in a paged fashion with all object details.
GET Discount/PromoCode/Paged/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 25,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "promoDescription": "Sample Text Data",
                "discountStart": "2021-04-26T15:25:27.587Z",
                "discountEnd": "2021-04-26T15:25:27.587Z",
                "isActive": true,
                "isProrated": true,
                "isNegativeAllowed": true,
                "details": {
                    "discountPromoCodeCurrencies": [
                        {
                            "identity": 14,
                            "discountPromoCodeId": 61,
                            "discountPromoCodeName": "Sample Text Data",
                            "currencyId": 92,
                            "currencyCode": "Sample Text Data",
                            "currencyName": "Sample Text Data",
                            "discountId": 77,
                            "isActive": true,
                            "details": {
                                "discountAmounts": [
                                    {
                                        "identity": 9,
                                        "discountId": 85,
                                        "discountTypeId": 44,
                                        "discountTypeName": "Sample Text Data",
                                        "frequency": 17,
                                        "frequencyTypeId": 11,
                                        "frequencyTypeName": "Sample Text Data",
                                        "amount": 15.73,
                                        "appliedOrder": 71
                                    }
                                ]
                            }
                        }
                    ]
                }
            }
        ]
    }
}
GETDiscount/PromoCode/{id}
Retrieve an instance of the DiscountPromoCode object by its ID.
{id}Unique identifier for the DiscountPromoCode object.
Retrieve an instance of the DiscountPromoCode object by its ID.
GET Discount/PromoCode/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 6,
        "ownerName": "Sample Text Data",
        "name": "Sample Text Data",
        "promoDescription": "Sample Text Data",
        "discountStart": "2021-04-26T15:25:27.587Z",
        "discountEnd": "2021-04-26T15:25:27.587Z",
        "isActive": true,
        "isProrated": true,
        "isNegativeAllowed": true
    }
}
GETDiscount/PromoCode/{id}/Detail
Retrieve deep detail of the DiscountPromoCode object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
{id}Unique identifier for the DiscountPromoCode object.
Retrieve deep detail of the DiscountPromoCode object by its ID.
GET Discount/PromoCode/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 26,
        "ownerName": "Sample Text Data",
        "name": "Sample Text Data",
        "promoDescription": "Sample Text Data",
        "discountStart": "2021-04-26T15:25:27.587Z",
        "discountEnd": "2021-04-26T15:25:27.587Z",
        "isActive": true,
        "isProrated": true,
        "isNegativeAllowed": true,
        "details": {
            "discountPromoCodeCurrencies": [
                {
                    "identity": 14,
                    "discountPromoCodeId": 61,
                    "discountPromoCodeName": "Sample Text Data",
                    "currencyId": 92,
                    "currencyCode": "Sample Text Data",
                    "currencyName": "Sample Text Data",
                    "discountId": 77,
                    "isActive": true,
                    "details": {
                        "discountAmounts": [
                            {
                                "identity": 9,
                                "discountId": 85,
                                "discountTypeId": 44,
                                "discountTypeName": "Sample Text Data",
                                "frequency": 17,
                                "frequencyTypeId": 11,
                                "frequencyTypeName": "Sample Text Data",
                                "amount": 15.73,
                                "appliedOrder": 71
                            }
                        ]
                    }
                }
            ]
        }
    }
}
PATCHDiscount/PromoCode/{id}
Update or Add the DiscountPromoCode object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array.
{id}Unique identifier for the DiscountPromoCode object.
Update or Add the DiscountPromoCode object and optionally make changes to any child objects.
PATCH Discount/PromoCode/{id}

{
    "details": {},
    "discountPromoCodes": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "name": "Sample Text Data",
                "promoDescription": "Sample Text Data",
                "discountStart": "2021-04-26T15:25:27.587Z",
                "discountEnd": "2021-04-26T15:25:27.587Z",
                "isActive": true,
                "isProrated": true,
                "isNegativeAllowed": true
            }
        ]
    }
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "patch",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "action": "created",
                "dtoTypeKey": "discountPromoCode",
                "instance": {
                    "identity": 1,
                    "ownerId": 23,
                    "ownerName": "Sample Text Data",
                    "name": "Sample Text Data",
                    "promoDescription": "Sample Text Data",
                    "discountStart": "2021-04-26T15:25:27.587Z",
                    "discountEnd": "2021-04-26T15:25:27.587Z",
                    "isActive": true,
                    "isProrated": true,
                    "isNegativeAllowed": true
                }
            }
        ]
    }
}
POSTDiscount/PromoCode/
Create a new instance of the DiscountPromoCode object.
Create a new instance of the DiscountPromoCode object.
POST Discount/PromoCode/

{
    "name": "Sample Text Data",
    "promoDescription": "Sample Text Data",
    "discountStart": "2021-04-26T15:25:27.587Z",
    "discountEnd": "2021-04-26T15:25:27.587Z",
    "isActive": true,
    "isProrated": true,
    "isNegativeAllowed": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 26,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "promoDescription": "Sample Text Data",
                "discountStart": "2021-04-26T15:25:27.587Z",
                "discountEnd": "2021-04-26T15:25:27.587Z",
                "isActive": true,
                "isProrated": true,
                "isNegativeAllowed": true
            }
        ]
    }
}
PUTDiscount/PromoCode/{id}
Update an existing instance of the DiscountPromoCode object.
Update an existing instance of the DiscountPromoCode object.
PUT Discount/PromoCode/{id}

{
    "identity": 1,
    "name": "Sample Text Data",
    "promoDescription": "Sample Text Data",
    "discountStart": "2021-04-26T15:25:27.587Z",
    "discountEnd": "2021-04-26T15:25:27.587Z",
    "isActive": true,
    "isProrated": true,
    "isNegativeAllowed": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 4,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "promoDescription": "Sample Text Data",
                "discountStart": "2021-04-26T15:25:27.587Z",
                "discountEnd": "2021-04-26T15:25:27.587Z",
                "isActive": true,
                "isProrated": true,
                "isNegativeAllowed": true
            }
        ]
    }
}