POST api/CreateManualTransactionRequest
Request Information
URI Parameters
None.
Body Parameters
CreateManualTransactionRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentSourceId | integer |
None. |
|
| CellNumber | string |
None. |
|
| Suffix | string |
None. |
|
| AmountInCents | integer |
None. |
|
| StatementDateUtc | date |
None. |
|
| SupportComment | string |
None. |
|
| SuperAffiliateId | globally unique identifier |
None. |
|
| ParentTransactionId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"payment-source-id": 1,
"cell-number": "sample string 2",
"suffix": "sample string 3",
"amount-in-cents": 4,
"statement-date-utc": "2026-02-20T11:39:02.6930942+00:00",
"support-comment": "sample string 6",
"super-affiliate-id": "c212eaf1-0707-4b3b-8d2e-6df53cb3a386",
"parent-transaction-id": "05895047-d99e-4f35-8d46-72a71b4b815a"
}
application/xml, text/xml
Sample:
<CreateManualTransactionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Caprica.Models"> <AmountInCents>4</AmountInCents> <CellNumber>sample string 2</CellNumber> <ParentTransactionId>05895047-d99e-4f35-8d46-72a71b4b815a</ParentTransactionId> <PaymentSourceId>1</PaymentSourceId> <StatementDateUtc>2026-02-20T11:39:02.6930942+00:00</StatementDateUtc> <Suffix>sample string 3</Suffix> <SuperAffiliateId>c212eaf1-0707-4b3b-8d2e-6df53cb3a386</SuperAffiliateId> <SupportComment>sample string 6</SupportComment> </CreateManualTransactionRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |