BokaMera.API.Host

<back to all web services

GetPricesAfterRebateCode

Requires Authentication
The following routes are available for this service:
POST/rebatecodes/pricesGet the new pricesGet the new prices after applying RebateCodes
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using BokaMera.API.ServiceModel.Dtos;

namespace BokaMera.API.ServiceModel.Dtos
{
    public partial class AppliedRebateCodesResponse
    {
        public virtual string RebateCodeSign { get; set; }
        public virtual int RebateCodeValue { get; set; }
        public virtual RebateCodeTypeItem RebateCodeType { get; set; }
        public virtual int RebateCodeId { get; set; }
        public virtual double RebateAmount { get; set; }
    }

    [ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)]
    [ValidateRequest("IsAuthenticated")]
    public partial class GetPricesAfterRebateCode
    {
        public GetPricesAfterRebateCode()
        {
            RebateCodeIds = new List<int>{};
            RebateCodeSigns = new List<string>{};
        }

        ///<summary>
        ///
        ///</summary>
        [ApiMember(Description="", IsRequired=true)]
        public virtual Guid CompanyId { get; set; }

        ///<summary>
        ///The service you want to get the prices with rebates on
        ///</summary>
        [ApiMember(Description="The service you want to get the prices with rebates on")]
        public virtual int? ServiceId { get; set; }

        ///<summary>
        ///Provide this if you like to the prices with rebate code ids
        ///</summary>
        [ApiMember(Description="Provide this if you like to the prices with rebate code ids")]
        public virtual List<int> RebateCodeIds { get; set; }

        ///<summary>
        ///Provide this if you like to the prices with rebate code signs instead of ids
        ///</summary>
        [ApiMember(Description="Provide this if you like to the prices with rebate code signs instead of ids")]
        public virtual List<string> RebateCodeSigns { get; set; }

        ///<summary>
        ///Provide this if you like to calculate the prices with the provided datetime
        ///</summary>
        [ApiMember(Description="Provide this if you like to calculate the prices with the provided datetime", IsRequired=true)]
        public virtual DateTime DateFrom { get; set; }
    }

    public partial class RebateCodePrice
    {
        public RebateCodePrice()
        {
            AppliedCodes = new List<AppliedRebateCodesResponse>{};
        }

        ///<summary>
        ///Price Id
        ///</summary>
        [ApiMember(Description="Price Id")]
        public virtual int? PriceId { get; set; }

        public virtual string PriceText { get; set; }
        public virtual double? PriceBeforeRebate { get; set; }
        public virtual double? Price { get; set; }
        public virtual decimal? VAT { get; set; }
        public virtual List<AppliedRebateCodesResponse> AppliedCodes { get; set; }
    }

    public partial class RebateCodePriceResponse
    {
        public RebateCodePriceResponse()
        {
            RebateCodePrices = new List<RebateCodePrice>{};
        }

        public virtual List<RebateCodePrice> RebateCodePrices { get; set; }
        public virtual ResponseStatus ResponseStatus { get; set; }
    }

    public partial class RebateCodeTypeItem
    {
        public virtual int Id { get; set; }
        public virtual string Name { get; set; }
        public virtual string Description { get; set; }
    }

}

C# GetPricesAfterRebateCode DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /rebatecodes/prices HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	ServiceId: 0,
	RebateCodeIds: 
	[
		0
	],
	RebateCodeSigns: 
	[
		String
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	RebateCodePrices: 
	[
		{
			PriceId: 0,
			PriceText: String,
			PriceBeforeRebate: 0,
			Price: 0,
			VAT: 0,
			AppliedCodes: 
			[
				{
					RebateCodeSign: String,
					RebateCodeValue: 0,
					RebateCodeType: 
					{
						Id: 0,
						Name: String,
						Description: String
					},
					RebateCodeId: 0,
					RebateAmount: 0
				}
			]
		}
	],
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}