PUT api/CustomerAction/Update

Request Information

URI Parameters

None.

Body Parameters

CustomerActionUpdateDto
NameDescriptionTypeAdditional information
Date

date

None.

Description

string

None.

Debt

decimal number

None.

Payment

decimal number

None.

Balance

decimal number

None.

CustomerID

globally unique identifier

None.

CurrencyID

globally unique identifier

None.

ID

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "date": "2025-12-11T17:33:11.1606972+03:00",
  "description": "sample string 2",
  "debt": 3.1,
  "payment": 4.1,
  "balance": 5.1,
  "customerID": "b99ede98-d999-48fd-995a-9ab97cd4e7e8",
  "currencyID": "edf88d69-a313-4941-9ca5-90bbcb872f74",
  "id": "2a426b4e-941f-48f2-aa31-32686ea1fb48"
}

application/xml, text/xml

Sample:
<CustomerActionUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RS.Core.Service.DTOs">
  <ID>2a426b4e-941f-48f2-aa31-32686ea1fb48</ID>
  <Balance>5.1</Balance>
  <CurrencyID>edf88d69-a313-4941-9ca5-90bbcb872f74</CurrencyID>
  <CustomerID>b99ede98-d999-48fd-995a-9ab97cd4e7e8</CustomerID>
  <Date>2025-12-11T17:33:11.1606972+03:00</Date>
  <Debt>3.1</Debt>
  <Description>sample string 2</Description>
  <Payment>4.1</Payment>
</CustomerActionUpdateDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/html

Sample:
{"Date":"2025-12-11T17:33:11.1606972+03:00","Description":"sample string 2","Debt":3.1,"Payment":4.1,"Balance":5.1,"CustomerID":"b99ede98-d999-48fd-995a-9ab97cd4e7e8","CurrencyID":"edf88d69-a313-4941-9ca5-90bbcb872f74","ID":"2a426b4e-941f-48f2-aa31-32686ea1fb48"}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml, text/html

Sample:

Sample not available.