POST api/cardService/v1/card/updateSpendProfile

Request Information

URI Parameters

None.

Body Parameters

AssignSpendProfileToCardRequest
NameDescriptionTypeAdditional information
cardId

string

Required

spendProfileId

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "cardId": "sample string 1",
  "spendProfileId": 2
}

application/xml, text/xml

Sample:
<AssignSpendProfileToCardRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Qcs.WebApi.WebApiModels.Product">
  <cardId>sample string 1</cardId>
  <spendProfileId>2</spendProfileId>
</AssignSpendProfileToCardRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PurchaseCategoryResponse
NameDescriptionTypeAdditional information
PurchaseCategory

PurchaseCategoryModel

None.

IsSuccess

boolean

Required

ErrorCodes

Collection of string

Required

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "PurchaseCategory": {
    "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:
<PurchaseCategoryResponse 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>
  <PurchaseCategory>
    <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>
  </PurchaseCategory>
</PurchaseCategoryResponse>