GET finance/documents/paymentmethods/{id}?categoryid={categoryid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

categoryid

integer

None.

Body Parameters

None.

Response Information

Resource Description

PaymentMethod
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

None.

Due

boolean

None.

COA

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2",
  "Due": true,
  "COA": "sample string 4"
}

text/xml

Sample:
<PaymentMethod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pixfin.DTO.Common.Documents">
  <COA>sample string 4</COA>
  <Due>true</Due>
  <ID>1</ID>
  <Name>sample string 2</Name>
</PaymentMethod>