Loading...
GET https://api.3seventy.com/api/v2.1/account/{accountId}/external-couponlist/{externalCouponListId}/code/{couponCode}
Description
Get details of a perticular Coupon CodePath Parameters
accountId | integer | The account ID the external coupon list belongs to. | required |
externalCouponListId | integer | The External Coupon List Id of the coupon code | required |
couponCode | string | The coupon code who's details that needs to be returned | required |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Linq;
using ThreeSeventy.Vector.Client;
using ThreeSeventy.Vector.Client.Enums;
using ThreeSeventy.Vector.Client.Models;
public class Program
{
private static void Main(string[] args)
{
const int accountId = XXXX;
const int externalCouponListId = XXXX;
const string couponCode = "XXXX";
var context = new CouponRestContext();
var item = context.GetCouponExternalCode(accountId, externalCouponListId, couponCode);
}
}