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": "99d618f5-94ad-49b5-9e3d-adf49f64a24f",
"TenantId": "f52ef484-860b-447a-91c2-1641e935b379"
}
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>f52ef484-860b-447a-91c2-1641e935b379</TenantId> <UserId>99d618f5-94ad-49b5-9e3d-adf49f64a24f</UserId> </CreditInputDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.