Versions Compared

Key

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

...

...

...

...

...

...

...

...

...

...

...

...


Tip

Available from CRM.COM R12.0.0


Tip

Deprecated from CRM.COM R17.0.0


Excerpt

This method is used to get wallet transactions which are not related to any wallet balance period and as a result, their amounts are not included in the opening balance of the wallet for the currently open wallet balance period. Wallet transactions of a single wallet can be retrieved by each call.

Tip

Available from CRM.COM R12.0.0

Resource URL

Parameters

NameTypeDescription
tokenStringThe token retrieved from the login method
wallet_identifier

(mandatory)

Wallet Identifier

The identifier of the wallet that should be returned as a result. The allowed wallets identifier fields are the following:

Include Page
V4:wallet_identifier
V4:wallet_identifier

number
(optional)
NumberThe number of wallet transactions to be retrieved, starting from the latest one

fields_set

(optional)

List of Strings, comma separated

 


A list of fields that should be included in the results. If not specified then all the available fields will be returned

Restrictions

  • It is mandatory to specify one of the semi-optional parameters. Only one of those parameters is allowed to be specified

...

Expand
titleExample 1

HTTP Method: GET
 


Request:

Body:

 
Code Block
languagejs
themeConfluence
languagejs
linenumberstrue


Response:

Code Block
 {
  "data": [
    {
      "number": "48609",
      "amount": 50,
      "wallet": {
        "number": "W0000002918",
        "accounts_receivable": {
          "number": "ACR0000003381",
          "name": "John sqrxlbvbvw. 6390 Account",
          "id": "4CAD31A8BDA84069B63F6C96C7069AEF",
          "life_cycle_state": "ACTIVE",
          "account_owner": {
            "company_profile": null,
            "company_name": null,
            "name": "John Donzk 703",
            "last_name": "Donzk 703",
            "id": "7278214BE871462AA5824BF07E3CC4A6",
            "life_cycle_state": "FINANCIAL",
            "middle_name": "N.",
            "title": null,
            "type": "PERSON",
            "first_name": "John",
            "demographics": {
              "name_day": {
                "month": null,
                "day": null
              },
              "id_number": null,
              "gender": null,
              "country_of_residence": {
                "alternative_code": "CYP",
                "three_character_code": "CYP",
                "name": "CYPRUS",
                "id": "181",
                "two_character_code": "CY"
              },
              "date_of_birth": {
                "month": null,
                "year": null,
                "day": null
              },
              "industry_sector": null,
              "passport_number": null,
              "industry": null,
              "social_security_number": null,
              "id_issued_by_country": null,
              "passport_issued_by_country": null
            }
          }
        },
        "id": "20306BBB3F514B6890539D8F50830C3E",
        "life_cycle_state": "EFFECTIVE"
      },
      "log_information": {
        "created_by_unit": {
          "alternative_code": "adminunit",
          "group_name": "Main Group",
          "community_name": "Community",
          "name": "Admin Unit",
          "description": "admin unit",
          "id": "1"
        },
        "updated_by_unit": {
          "alternative_code": "adminunit",
          "group_name": "Main Group",
          "community_name": "Community",
          "name": "Admin Unit",
          "description": "admin unit",
          "id": "1"
        },
        "created_date": "2017-02-09T16:45:21",
        "updated_date": "2017-02-09T16:45:40",
        "updated_by_user": {
          "person_name": "MPAdministrator",
          "id": "1",
          "email": "dev@crm.com",
          "username": "MPAdministrator"
        },
        "created_by_user": {
          "person_name": "MPAdministrator",
          "id": "1",
          "email": "dev@crm.com",
          "username": "MPAdministrator"
        }
      },
      "caused_by_entity": null,
      "currency_rate_period": null,
      "id": "2E29B06370FF4A45A4BD37D636ABF4A7",
      "life_cycle_state": "EFFECTIVE",
      "extra_added_amount": null,
      "type": {
        "alternative_code": "WC",
        "name": "Wallet Credit",
        "description": "Wallet Credit",
        "id": "CA1B3E67E5A6F899512CEFE24E40875B",
        "classification": "CREDIT"
      },
      "caused_by_entity_id": null
    }
  ],
  "status": {
    "code": "OK",
    "description": "",
    "message": ""
  }
}


...