Add Custom Discount To Cart Item
POSThttps://useast.api.elasticpath.com/v2/carts/:cartID/items/:cartitemID/custom-discounts
Use this endpoint to add a custom discount to cart item.
Request
Path Parameters
cartID stringrequired
Specifies the ID for the cart.
cartitemID stringrequired
Specifies the unique identifier for the cart item.
- application/json
Body
amount numberrequired
Specifies an amount to be applied for the custom discount. It must be less than zero.
description stringrequired
Specifies a description for the custom discount.
discount_code stringrequired
Specifies the discount code used for the custom discount.
discount_engine stringrequired
Specifies from where the custom discount is applied. For example, Talon.one.
external_id stringrequired
Specifies an external id for the custom discount.
type stringrequired
Specifies the type of the resource. Always custom_discount
.
Responses
- 200
- 401
Response Headers
- application/json
- Schema
- Example (auto)
Schema
data object
{
"data": {
"amount": {
"amount": 0,
"currency": "string",
"formatted": "string"
},
"description": "string",
"discount_code": "string",
"discount_engine": "string",
"external_id": "string",
"type": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
}
Unauthorized
- application/json
- Schema
- Example (auto)
- Example
Schema
detail string
status string
title string
[
null
]
{
"errors": {
"status": 401,
"title": "Unauthorized"
}
}
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://useast.api.elasticpath.com/v2/carts/:cartID/items/:cartitemID/custom-discounts");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var content = new StringContent("{\n \"amount\": 0,\n \"description\": \"string\",\n \"discount_code\": \"string\",\n \"discount_engine\": \"string\",\n \"external_id\": \"string\",\n \"type\": \"string\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear