PUT api/rebate/{id}

Place RebateClaim object at the guid location

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

RebateClaim guid to use when saving RebateClaim

globally unique identifier

Required

Body Parameters

Rebate Claim object to save

RebateClaim
NameDescriptionTypeAdditional information
Identifier

RebateClaim identifier data

Collection of byte

None.

IdentifierGuid

RebateClaim identifier GUID

globally unique identifier

None.

Name

Name for rebate claim

string

String length: inclusive between 0 and 40

StoreIDs

Stores that this claim is for

Collection of integer

None.

MailFrom

Email report from

string

String length: inclusive between 0 and 191

IncludeBcc

Include "from" email in Bcc

boolean

None.

MailTo

Email report to

string

String length: inclusive between 0 and 191

MailCc

Cc report to

string

String length: inclusive between 0 and 191

StartDate

Start date for claim

date

None.

EndDate

End dsate for claim

date

None.

SupplierGroup

Supplier group

Collection of byte

None.

SupplierGroupGuid

Supplier Group GUID

globally unique identifier

None.

Supplier

Supplier

Collection of byte

None.

SupplierGuid

Supplier GUID

globally unique identifier

None.

CoOpAmount

Co-op amount (advertising and instore setup)

decimal number

None.

RebateFrequency

Rebate frequency

RebateFrequency

None.

RebateType

Rebate type

RebateType

None.

RebateSource

Rebate source

RebateSource

None.

Rebate

Rebate percentage

decimal number

None.

ClaimDate

Date rebate claim was mate

date

None.

Deleted

Deleted flag

integer

None.

SupplierGroupName

Supplier group name

string

None.

SupplierName

Supplier group name

string

None.

Request Formats

application/json, text/json

Sample:
{
  "identifier": "wJ+1zBQi70SYESjOavBOCQ==",
  "identifierGuid": "ccb59fc0-2214-44ef-9811-28ce6af04e09",
  "name": "sample string 2",
  "storeIDs": [
    1,
    2
  ],
  "mailFrom": "sample string 3",
  "includeBcc": true,
  "mailTo": "sample string 5",
  "mailCc": "sample string 6",
  "startDate": "2025-06-14T06:59:26.8198719",
  "endDate": "2025-06-14T06:59:26.8198719",
  "supplierGroup": "ZY8p04AQVkmUgdPy11I86w==",
  "supplierGroupGuid": "d3298f65-1080-4956-9481-d3f2d7523ceb",
  "supplier": "wzzvJXobu0uydfXLTQv2Eg==",
  "supplierGuid": "25ef3cc3-1b7a-4bbb-b275-f5cb4d0bf612",
  "coOpAmount": 9.1,
  "rebateFrequency": 10,
  "rebateType": 11,
  "rebateSource": 12,
  "rebate": 13.1,
  "claimDate": "2025-06-14T06:59:26.8198719",
  "deleted": 14,
  "supplierGroupName": "sample string 15",
  "supplierName": "sample string 16"
}

application/xml, text/xml

Sample:
<RebateClaim xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Rebate">
  <ClaimDate>2025-06-14T06:59:26.8198719+00:00</ClaimDate>
  <CoOpAmount>9.1</CoOpAmount>
  <Deleted>14</Deleted>
  <EndDate>2025-06-14T06:59:26.8198719+00:00</EndDate>
  <Identifier>wJ+1zBQi70SYESjOavBOCQ==</Identifier>
  <IdentifierGuid>ccb59fc0-2214-44ef-9811-28ce6af04e09</IdentifierGuid>
  <IncludeBcc>true</IncludeBcc>
  <MailCc>sample string 6</MailCc>
  <MailFrom>sample string 3</MailFrom>
  <MailTo>sample string 5</MailTo>
  <Name>sample string 2</Name>
  <Rebate>13.1</Rebate>
  <RebateFrequency>10</RebateFrequency>
  <RebateSource>12</RebateSource>
  <RebateType>11</RebateType>
  <StartDate>2025-06-14T06:59:26.8198719+00:00</StartDate>
  <StoreIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </StoreIDs>
  <Supplier>wzzvJXobu0uydfXLTQv2Eg==</Supplier>
  <SupplierGroup>ZY8p04AQVkmUgdPy11I86w==</SupplierGroup>
  <SupplierGroupGuid>d3298f65-1080-4956-9481-d3f2d7523ceb</SupplierGroupGuid>
  <SupplierGroupName>sample string 15</SupplierGroupName>
  <SupplierGuid>25ef3cc3-1b7a-4bbb-b275-f5cb4d0bf612</SupplierGuid>
  <SupplierName>sample string 16</SupplierName>
</RebateClaim>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.