POST api/Credits
Creates a credit.
Request Information
URI Parameters
None.
Body Parameters
The credit model to create with.
CreditInputDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Amount | decimal number |
Required |
|
| UserId | globally unique identifier |
Required |
|
| TenantId | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"Amount": 1.0,
"UserId": "5d873b45-a8cc-444e-94e1-f8e8982ebfe4",
"TenantId": "2842d380-c6d2-4fd1-b5fe-246f00b9bcbc"
}
application/xml, text/xml
Sample:
<CreditInputDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models"> <Amount>1</Amount> <TenantId>2842d380-c6d2-4fd1-b5fe-246f00b9bcbc</TenantId> <UserId>5d873b45-a8cc-444e-94e1-f8e8982ebfe4</UserId> </CreditInputDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.