NAV

<back to all web services

CallCenterProfileSalesRecognitionGet

The following routes are available for this service:
GET/call-center/profiles/{BeeNumber}/sales-recognition
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using NAV.ServiceModel;

namespace NAV.ServiceModel
{
    public partial class CallCenterProfileSalesRecognitionGet
        : IGet
    {
        public virtual decimal BeeNumber { get; set; }
    }

    public partial class CallCenterProfileSalesRecognitionGetResponse
    {
        public virtual decimal AccountNumber { get; set; }
        public virtual string PCtag { get; set; }
        public virtual decimal LOA { get; set; }
        public virtual decimal AmtNeededForPremierLevel { get; set; }
        public virtual decimal AmtNeededForPresidentsClub { get; set; }
        public virtual decimal AmtNeededForHonorSociety { get; set; }
        public virtual decimal AmtNeededForRoseCircle { get; set; }
        public virtual decimal AmtNeededForMcConnells { get; set; }
        public virtual decimal AmtNeededForPresidentsCouncil { get; set; }
        public virtual decimal AmtNeededForInnerCircle { get; set; }
        public virtual decimal CurrentCampaignSaleThisYear { get; set; }
        public virtual decimal CurrentCampaignSaleLastYear { get; set; }
        public virtual decimal PreviousCampaignSaleThisYear { get; set; }
        public virtual decimal PreviousCampaignSaleLastYear { get; set; }
        public virtual decimal CampaignSaleThisCycle { get; set; }
        public virtual decimal CampaignSaleLastCycle { get; set; }
        public virtual decimal BonusSaleThisCycle { get; set; }
        public virtual decimal BonusSaleLastCycle { get; set; }
        public virtual ResponseStatus ResponseStatus { get; set; }
    }

}

C# CallCenterProfileSalesRecognitionGet DTOs

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

HTTP + CSV

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

GET /call-center/profiles/{BeeNumber}/sales-recognition HTTP/1.1 
Host: extensions.avon.ca 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"accountNumber":0,"pCtag":"String","loa":0,"amtNeededForPremierLevel":0,"amtNeededForPresidentsClub":0,"amtNeededForHonorSociety":0,"amtNeededForRoseCircle":0,"amtNeededForMcConnells":0,"amtNeededForPresidentsCouncil":0,"amtNeededForInnerCircle":0,"currentCampaignSaleThisYear":0,"currentCampaignSaleLastYear":0,"previousCampaignSaleThisYear":0,"previousCampaignSaleLastYear":0,"campaignSaleThisCycle":0,"campaignSaleLastCycle":0,"bonusSaleThisCycle":0,"bonusSaleLastCycle":0,"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}