Transfer journal entry maps

This object provides information about journal entries created during an asset transfer.

List transfer journal entry maps

get/objects/fixed-assets/transfer-journal-entry-map

Returns a collection with a key, ID, and link for each transfer journal entry map. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": [
    • {
      • "id": "1",
      • "key": "1",
      • "href": "/objects/fixed-assets/transfer-journal-entry-map/1"
      },
    • {
      • "id": "2",
      • "key": "2",
      • "href": "/objects/fixed-assets/transfer-journal-entry-map/2"
      }
    ],
  • "ia::meta": {
    • "totalCount": 2,
    • "totalSuccess": 2,
    • "totalError": 0
    }
}

Get a transfer journal entry map

get/objects/fixed-assets/transfer-journal-entry-map/{key}

Returns detailed information for a specified transfer journal entry map.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned key for the transfer journal entry map.

Example: 1
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "journalEntry": {
      • "key": "57",
      • "id": "57",
      • "txnNumber": 6,
      • "href": "/objects/general-ledger/journal-entry/57"
      },
    • "transferHistory": {
      • "key": "28",
      • "id": "28",
      • "href": "/objects/fixed-assets/transfer-history/28"
      },
    • "journal": {
      • "key": "46",
      • "id": "TAX",
      • "name": "TAX Accrual Book",
      • "href": "/objects/general-ledger/journal/46"
      },
    • "depreciationSchedule": {
      • "key": "11",
      • "id": "11",
      • "href": "/objects/fixed-assets/depreciation-schedule/11"
      },
    • "audit": {
      • "createdByUser": {
        },
      • "modifiedByUser": {
        },
      • "createdBy": "1",
      • "createdDateTime": "2025-04-02T20:59:13Z",
      • "modifiedBy": "1",
      • "modifiedDateTime": "2025-04-02T20:59:13Z"
      },
    • "key": "15",
    • "id": "15",
    • "href": "/objects/fixed-assets/transfer-journal-entry-map/15"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}