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": "6bdbeefd-2216-4b17-873e-086a8480c3b4",
"TenantId": "dca2cea7-7977-4594-ace7-2149b88f29e0"
}
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>dca2cea7-7977-4594-ace7-2149b88f29e0</TenantId> <UserId>6bdbeefd-2216-4b17-873e-086a8480c3b4</UserId> </CreditInputDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.