Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

GET api/support/getMyData

Fetches all transactions for a given phone number made towards a given partner. Includes all fields potentially containing private information.

Expand
titleExample
Code Block
Request:
GET api/support/getMyData?partnerId={partnerId}&msisdn={msisdn}
GET api/support/getMyData?partnerId={partnerId}&msisdn={msisdn}&api-version=2.0

Response:
[
  {
    "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": "2023-12-04T08:09:59.1163669Z",
    "createdDate": "2023-12-04T08:09:59.1163669Z",
    "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": "2023-12-04T08:09:59.1163669Z",
    "createdDate": "2023-12-04T08:09:59.1163669Z",
    "customProperties": [
      {
        "name": "sample string 1",
        "value": "sample string 2"
      },
      {
        "name": "sample string 1",
        "value": "sample string 2"
      }
    ]
  }
]

Request information

Name

Value

Description

Data Type

Example

partnerId

required

PartnerId provided by LINK Mobility AS

integer

10295

msisdn

required

Phone number of the end user

string

“+47 123 123 123”

Response information

List of UserTransactionEntry

Response information

Status Code

Description

Message

200

OK

GET api/support/getMyData/excel

Fetches all transactions for a given phone number made towards a given partner. Includes all fields potentially containing private information.

Expand
titleExample
Code Block
Request:
GET api/support/getMyData/excel?partnerId={partnerId}&msisdn={msisdn}
GET api/support/getMyData/excel?partnerId={partnerId}&msisdn={msisdn}&api-version=2.0

Request information

Name

Value

Description

Data Type

Example

partnerId

required

PartnerId provided by LINK Mobility AS

integer

10295

msisdn

required

Phone number of the end user

string

“+47 123 123 123”

Response information

List of HttpResponseMessage

Response information

Status Code

Description

Message

200

OK

POST api/support/forgetMe

GDPR Compliance. Performs a "forget me" action for the specified user. Removes or anonymizes all private information relating a given MSISDN to the given partner. This is not reversilbe.

Expand
titleExample
Code Block
Request:
POST api/support/forgetMe?partnerId={partnerId}&msisdn={msisdn}
POST api/support/forgetMe?partnerId={partnerId}&msisdn={msisdn}&api-version=2.0

Request information

Name

Value

Description

Data Type

Example

partnerId

required

PartnerId provided by LINK Mobility AS

integer

10295

msisdn

required

Phone number of the end user

string

“+47 123 123 123”

Response information

Status Code

Description

Message

200

OK