GET api/support/getMyData?partnerId={partnerId}&msisdn={msisdn}&api-version=2.0
Fetches all transactions for a given phone number made towards a given partner. Includes all fields potentially containing private information.
Request Information
URI Parameters
| Name | Description | Type | Required | Additional information |
|---|---|---|---|---|
| partnerId |
The ID of the partner. |
integer |
Required |
|
| msisdn |
The MSISDN of the end user. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns a collection of transaction entries.
Collection of UserTransactionEntry| Name | Description | Type | Required | Additional information |
|---|---|---|---|---|
| Amount | decimal number |
None. |
||
| Msisdn | string |
None. |
||
| Currency | string |
None. |
||
| PaymentStatus | string |
None. |
||
| PaymentType | string |
None. |
||
| SmsText | string |
None. |
||
| Description | string |
None. |
||
| SSN | string |
None. |
||
| PaymentDate | date |
None. |
||
| CreatedDate | date |
None. |
||
| CustomProperties | Collection of CustomProperty |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"amount": 1.0,
"msisdn": "sample string 2",
"currency": "sample string 3",
"paymentStatus": "sample string 4",
"paymentType": "sample string 5",
"smsText": "sample string 6",
"description": "sample string 7",
"ssn": "sample string 8",
"paymentDate": "2025-10-30T14:21:08.4782026Z",
"createdDate": "2025-10-30T14:21:08.4782026Z",
"customProperties": [
{
"name": "sample string 1",
"value": "sample string 2"
},
{
"name": "sample string 1",
"value": "sample string 2"
}
]
},
{
"amount": 1.0,
"msisdn": "sample string 2",
"currency": "sample string 3",
"paymentStatus": "sample string 4",
"paymentType": "sample string 5",
"smsText": "sample string 6",
"description": "sample string 7",
"ssn": "sample string 8",
"paymentDate": "2025-10-30T14:21:08.4782026Z",
"createdDate": "2025-10-30T14:21:08.4782026Z",
"customProperties": [
{
"name": "sample string 1",
"value": "sample string 2"
},
{
"name": "sample string 1",
"value": "sample string 2"
}
]
}
]