GET api/cardService/v1/product/merchantCodeByPurchaseCategory/{purchaseCategoryId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
purchaseCategoryId

integer

Required

Body Parameters

None.

Response Information

Resource Description

PurchaseCategoryResponseModel
NameDescriptionTypeAdditional information
Categories

Collection of PurchaseCategoryModel

None.

IsSuccess

boolean

Required

ErrorCodes

Collection of string

Required

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Categories": [
    {
      "Id": 1,
      "Name": "sample string 2",
      "MaxSingleTxnValue": 1.1,
      "MaxDailyTxnTotalValue": 1.1,
      "MaxDailyTotalTxns": 1.1,
      "MinSingleTxnValue": 1.1,
      "MaxSpend4Days": 1.1,
      "MaxTotalTxns4Days": 1.1,
      "MaxWeeklyTxnValue": 1.1
    },
    {
      "Id": 1,
      "Name": "sample string 2",
      "MaxSingleTxnValue": 1.1,
      "MaxDailyTxnTotalValue": 1.1,
      "MaxDailyTotalTxns": 1.1,
      "MinSingleTxnValue": 1.1,
      "MaxSpend4Days": 1.1,
      "MaxTotalTxns4Days": 1.1,
      "MaxWeeklyTxnValue": 1.1
    }
  ],
  "IsSuccess": true,
  "ErrorCodes": [
    "sample string 1",
    "sample string 2"
  ],
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<PurchaseCategoryResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels.Product">
  <ErrorCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ErrorCodes>
  <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels">true</IsSuccess>
  <Message xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels">sample string 2</Message>
  <Categories>
    <PurchaseCategoryModel>
      <Id>1</Id>
      <MaxDailyTotalTxns>1.1</MaxDailyTotalTxns>
      <MaxDailyTxnTotalValue>1.1</MaxDailyTxnTotalValue>
      <MaxSingleTxnValue>1.1</MaxSingleTxnValue>
      <MaxSpend4Days>1.1</MaxSpend4Days>
      <MaxTotalTxns4Days>1.1</MaxTotalTxns4Days>
      <MaxWeeklyTxnValue>1.1</MaxWeeklyTxnValue>
      <MinSingleTxnValue>1.1</MinSingleTxnValue>
      <Name>sample string 2</Name>
    </PurchaseCategoryModel>
    <PurchaseCategoryModel>
      <Id>1</Id>
      <MaxDailyTotalTxns>1.1</MaxDailyTotalTxns>
      <MaxDailyTxnTotalValue>1.1</MaxDailyTxnTotalValue>
      <MaxSingleTxnValue>1.1</MaxSingleTxnValue>
      <MaxSpend4Days>1.1</MaxSpend4Days>
      <MaxTotalTxns4Days>1.1</MaxTotalTxns4Days>
      <MaxWeeklyTxnValue>1.1</MaxWeeklyTxnValue>
      <MinSingleTxnValue>1.1</MinSingleTxnValue>
      <Name>sample string 2</Name>
    </PurchaseCategoryModel>
  </Categories>
</PurchaseCategoryResponseModel>