Retrieve JC Transaction By Code

Prev Next
Get
/jc-rest-api/rest/1/jctran

Overview

The Job Transaction is used to enter batches of Job Costing transactions (costs, billings, and committed costs). The JcTran API allows the create, update, query of job cost transactions in CMiC.

Notes

UI Navigation

Project Controls > Job Costing > Transactions > Enter Cost Transactions

Reference Article

Job Costing – Enter Cost Transactions

Path Parameters

Parameter Description Example
/VUUID The VUuid attribute is the Unique row ID 0CD0671C31597A4BE063B08610AC2DA6

Query Standards

Key Recommended Description
finder Yes Filters data based on attributes. See finder details below. Finders can be combined using a comma delimiter between parameters that implies an "and" statement. For more information on using the finder functionality please see Best Practice
limit Yes A limit restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count, then the framework will return all available resources. For additional information on using the limit functionality please visit Best Practice
offset Yes The offset skips a specified number of items in a data list before it starts showing results. For example, if you set an offset of 10, it skips the first 10 items and begins showing from the 11th item. For additional information on using Offset functionality please visit Best Practice
orderBy Yes The orderBy attribute retrieves rows using an order ensuring the response payload displays data in the order supplied in the URL parameter using the GET method. For more information on using orderBy functionality please visit Best Practice

jctran Finders

Finder Parameter Data Type Data Length Description Example
JctranFinder CompCode string 8 This finder parameter queries cost transactions by Company Code. /jc-rest-api/rest/1/jctran?finder=JctranFinder;CompCode=001
PrimaryKey JcthVUuid string 64 This finder parameter is used to query specific cost transaction by unique identifier Vuuid. /jc-rest-api/rest/1/jctran?finder=PrimaryKey;JcthVUuid=36D8FD01666FB84EE063529610AC5F96

Example Payload (JSON):

{
    "JcthCompCode": "001",
    "JcthBchName": "Melissa",
    "JcthDate": "2022-07-14",
    "JcthJourCode": "JC",
    "JcthCurrCode": "USD",
    "JcthDesc": "MelissaT1000000000000",
    "JcthDefRefDesc":"MelissaT100000000000",
    "JcthTransactionAmt": 1111,
    "JcthVUuid": "7",
    "JcthPost": "N",
    "JctrandViewObj": [
        {    
              "JctdCompCode": "001",
              "JctdUserTypeCode": "J",
              "JctdJobCode": "14001",
              "JctdPhsCode": "01340",
              "JctdCatCode": "L",
              "JctdAmt": 1111,
              "JctdWmCode": "HR",
              "JctdRefCode": "Inv SALE1020-07",
              "JctdRefDesc": "OGUZTEST60",
              "JctdDate": "2022-07-15",
              "JctdDebitAmt": 0,
              "JctdCreditAmt": 1111,
              "JctdVUuid": "8"
        },{    
              "JctdCompCode": "001",
              "JctdUserTypeCode": "G",
              "JctdDeptCode": "00",
              "JctdAccCode": "20010",
              "JctdAmt": 1111,
              "JctdWmCode": "HR",
              "JctdRefCode": "Inv SALE1020-07",
              "JctdRefDesc": "OGUZTEST60",
              "JctdDate": "2022-07-16",
              "JctdDebitAmt": 1111,
              "JctdCreditAmt": 0,
              "JctdVUuid": "9"
        }
    ]
}

jctran header Attributes (required)

CMiC UI Fieldname Object Name Description Type Data Length Example
Company Code jctran JcthCompCode This is the company the Job this cost is committed to belong to. string 8 001
Batch Name jctran JcthBchName This is the batch name for the transaction record being created. Can be any user defined name. string 60 Transaction 998 Payroll costs
Journal Code jctran JcthJourCode This is the Journal Code this transaction will be committed to. Since this is a cost transcation, costs are committed as Job, Payroll, Subcontracts string 2 JC (Default) – Job CostPY – PayrollSC - Subcontract
Currency Code jctran JcthCurrCode This is the currency the transaction is created in. If the transaction being entered is in a different currency than the company’s, change this field appropriately. string 3 USD
Description jctran JcthDesc This is a short description of the cost transaction string 60
Reference Description jctran JcthDefRefDesc The reference code refers to the document number associated with the transaction. string 60 This is for Payroll week 31
Transaction Amount jctran JcthTransactionAmt The transaction amount for this record. This amount must be the total amount of all cost detail lines. number 10,245.00
VUuid jctran JcthVUuid This is the unique identifier for this record. If inserting Leave Blank. Automatically generated by the system when invoice inserted. string 64 0CD0671C31597A4BE063B08610AC2DA6
JctrandViewObj:

jctran detail Attributes (required)

CMiC UI Fieldname Object Name Description Type Data Length Example
Company Code jctran JctdCompCode This is the company code for the cost details being committed. Can we different from the company code in the header of cost transaction record. number 8 001
Cost Type Code jctran JctdUserTypeCode This is the distribution type for the cost. string 3 J – Job CostG – General Administration Cost
Job Code jctran JctdJobCode The job code the cost detail line is being committed to. string 10
Cost (Phase) Code jctran JctdPhsCode The cost (phase) code the cost detail line is being committed to. string 16
Category Code jctran JctdCatCode The category code the cost detail line is being committed to. string 16
Amount jctran JctdAmt The cost amount for this cost detail line. number 18
Weight Measure Code jctran JctdWmCode The weight measure is a unit of cost, typically used to delineate a cost as hours or dollars.The weight measure must be a valid weight measure code in CMiC. string 2 $ - DollarsHrs - Hours
Reference Code jctran JctdRefCode The reference code refers to the document number associated with the transaction cost detail line; can be different from the Cost Transaction Header Reference Code. string 25
Reference Description jctran JctdRefDesc Reference Description Source is used as a secondary description for the cost transaction. Typically used to identify a employee number if this is an employee cost transaction. string 60 2415
Date jctran JctdDate The date of the cost transaction injected. date YYYY-MM-DD 2025-09-23
Debit Account jctran JctdDebitAmt This is the cost amount that is recognized as an accounting debit entry in CMiC. Typically, a cost is either a debit or credit transaction. The total debit and credit detail cost transaction must equal to the transaction amount on the header of this transaction record. number 18 8200.00
Credit Account jctran JctdCreditAmt This is the cost amount that is recognized as an accounting credit entry in CMiC. Typically, a cost is either a debit or credit transaction. The total debit and credit detail cost transaction must equal to the transaction amount on the header of this transaction record. number 18 2045.00
VUuid jctran JctdVUuid This is the unique identifier for this record. If inserting Leave Blank. Automatically generated by the system when invoice inserted. string 64
Security
HTTP
Type basic

Basic authentication

Query parameters
finder
string
ExampleJctranFinder;CompCode=ZZ
Responses
200

OK

Headers
Content-Type
string
Exampleapplication/vnd.oracle.adf.resourcecollection+json
example-0

Successful Response

{
  "items": [
    {
      "JcthCompCode": "121",
      "JcthCompName": "VT-test corp2.",
      "JcthBchTypeCode": "C",
      "JcthBchNum": 29755,
      "JcthBchName": "VIKAS 2021-06-24 C",
      "JcthJourCode": "JC",
      "JcthJourName": "Job Costing",
      "JcthNum": 23125,
      "JcthCurrCode": "USD",
      "JcthCurrName": "US Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "VIKAS",
      "JcthDate": "2021-06-24",
      "JcthDateTimeEntry": "2021-06-24T20:32:56Z",
      "JcthDesc": null,
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": null,
      "JcthDefContCode": null,
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2021-06-24",
      "JcthConvNum": 1,
      "JcthTransactionAmt": 0,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "C589ED9E4D29207FE0530100007FCA88",
      "JcthPost": null,
      "JcthIuCreateDate": "2021-06-24T20:32:56Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/C589ED9E4D29207FE0530100007FCA88",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/C589ED9E4D29207FE0530100007FCA88",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/C589ED9E4D29207FE0530100007FCA88/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    },
    {
      "JcthCompCode": "121",
      "JcthCompName": "VT-test corp2.",
      "JcthBchTypeCode": "B",
      "JcthBchNum": 27472,
      "JcthBchName": "VIKAS 2021-05-03 B",
      "JcthJourCode": "JC",
      "JcthJourName": "Job Costing",
      "JcthNum": 21751,
      "JcthCurrCode": "USD",
      "JcthCurrName": "US Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "VIKAS",
      "JcthDate": "2021-05-11",
      "JcthDateTimeEntry": "2021-05-11T19:07:20Z",
      "JcthDesc": null,
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": null,
      "JcthDefContCode": null,
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2021-05-11",
      "JcthConvNum": 1,
      "JcthTransactionAmt": 0,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "C2139A7856F8CC20E0530100007F76EA",
      "JcthPost": null,
      "JcthIuCreateDate": "2021-05-11T19:07:20Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/C2139A7856F8CC20E0530100007F76EA",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/C2139A7856F8CC20E0530100007F76EA",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/C2139A7856F8CC20E0530100007F76EA/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    },
    {
      "JcthCompCode": "121",
      "JcthCompName": "VT-test corp2.",
      "JcthBchTypeCode": "C",
      "JcthBchNum": 30125,
      "JcthBchName": null,
      "JcthJourCode": "EC",
      "JcthJourName": "Equipment Costing",
      "JcthNum": 23230,
      "JcthCurrCode": "USD",
      "JcthCurrName": "US Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "VIKAS",
      "JcthDate": "2021-07-19",
      "JcthDateTimeEntry": "2021-07-20T03:19:48Z",
      "JcthDesc": null,
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": null,
      "JcthDefContCode": null,
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2021-07-19",
      "JcthConvNum": 1,
      "JcthTransactionAmt": null,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "C78663E0C3F47D39E0530100007F6EDC",
      "JcthPost": null,
      "JcthIuCreateDate": "2021-07-20T03:19:48Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/C78663E0C3F47D39E0530100007F6EDC",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/C78663E0C3F47D39E0530100007F6EDC",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/C78663E0C3F47D39E0530100007F6EDC/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    },
    {
      "JcthCompCode": "AB1",
      "JcthCompName": "Anjali's Test Company",
      "JcthBchTypeCode": "C",
      "JcthBchNum": 85300,
      "JcthBchName": "SUPPORT 2024-07-11 C",
      "JcthJourCode": "JC",
      "JcthJourName": "Job Costing",
      "JcthNum": 54110,
      "JcthCurrCode": "CAD",
      "JcthCurrName": "Canadian Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "SUPPORT",
      "JcthDate": "2024-08-01",
      "JcthDateTimeEntry": "2024-08-30T13:33:38Z",
      "JcthDesc": null,
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": null,
      "JcthDefContCode": null,
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2024-08-30",
      "JcthConvNum": 1,
      "JcthTransactionAmt": null,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "20E76EB81F54165AE06327261DAC759B",
      "JcthPost": null,
      "JcthIuCreateDate": "2024-08-30T13:33:38Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/20E76EB81F54165AE06327261DAC759B",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/20E76EB81F54165AE06327261DAC759B",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/20E76EB81F54165AE06327261DAC759B/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    },
    {
      "JcthCompCode": "AB1",
      "JcthCompName": "Anjali's Test Company",
      "JcthBchTypeCode": "C",
      "JcthBchNum": 90324,
      "JcthBchName": "SUPPORT 2024-07-11 C",
      "JcthJourCode": "JC",
      "JcthJourName": "Job Costing",
      "JcthNum": 54112,
      "JcthCurrCode": "CAD",
      "JcthCurrName": "Canadian Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "SUPPORT",
      "JcthDate": "2024-08-30",
      "JcthDateTimeEntry": "2024-08-30T13:37:55Z",
      "JcthDesc": null,
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": null,
      "JcthDefContCode": null,
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2024-08-30",
      "JcthConvNum": 1,
      "JcthTransactionAmt": null,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "20E76EB81F5E165AE06327261DAC759B",
      "JcthPost": null,
      "JcthIuCreateDate": "2024-08-30T13:37:55Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/20E76EB81F5E165AE06327261DAC759B",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/20E76EB81F5E165AE06327261DAC759B",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/20E76EB81F5E165AE06327261DAC759B/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    }
  ],
  "count": 5,
  "hasMore": true,
  "limit": 5,
  "offset": 0,
  "links": [
    {
      "rel": "self",
      "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran",
      "name": "jctran",
      "kind": "collection"
    }
  ]
}
example-1

Successful Response

{
  "items": [
    {
      "JcthCompCode": "ZZ",
      "JcthCompName": "CMiC Test Company",
      "JcthBchTypeCode": "C",
      "JcthBchNum": 101281,
      "JcthBchName": "VPTEST100",
      "JcthJourCode": "JC",
      "JcthJourName": "Job Costing",
      "JcthNum": 59943,
      "JcthCurrCode": "USD",
      "JcthCurrName": "US Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "DA",
      "JcthDate": "2025-02-03",
      "JcthDateTimeEntry": "2025-02-03T14:46:14Z",
      "JcthDesc": "VPTEST100",
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": "VPTEST100",
      "JcthDefContCode": "N",
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2025-02-03",
      "JcthConvNum": 1,
      "JcthTransactionAmt": -20,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "2D3EEA736878FFB0E06327261DACF609",
      "JcthPost": null,
      "JcthIuCreateDate": "2025-02-03T14:46:14Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2D3EEA736878FFB0E06327261DACF609",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2D3EEA736878FFB0E06327261DACF609",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2D3EEA736878FFB0E06327261DACF609/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    },
    {
      "JcthCompCode": "ZZ",
      "JcthCompName": "CMiC Test Company",
      "JcthBchTypeCode": "C",
      "JcthBchNum": 100964,
      "JcthBchName": "VPTEST001",
      "JcthJourCode": "JC",
      "JcthJourName": "Job Costing",
      "JcthNum": 59803,
      "JcthCurrCode": "USD",
      "JcthCurrName": "US Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "DA",
      "JcthDate": "2025-01-30",
      "JcthDateTimeEntry": "2025-01-30T16:04:16Z",
      "JcthDesc": "VPTEST001",
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": "VPTEST001",
      "JcthDefContCode": "N",
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2025-01-30",
      "JcthConvNum": 1,
      "JcthTransactionAmt": -20,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "2CEF606ECB063F03E06327261DAC1C95",
      "JcthPost": null,
      "JcthIuCreateDate": "2025-01-30T16:04:16Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2CEF606ECB063F03E06327261DAC1C95",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2CEF606ECB063F03E06327261DAC1C95",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2CEF606ECB063F03E06327261DAC1C95/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    },
    {
      "JcthCompCode": "ZZ",
      "JcthCompName": "CMiC Test Company",
      "JcthBchTypeCode": "C",
      "JcthBchNum": 101318,
      "JcthBchName": "VPTEST101",
      "JcthJourCode": "JC",
      "JcthJourName": "Job Costing",
      "JcthNum": 59955,
      "JcthCurrCode": "USD",
      "JcthCurrName": "US Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "DA",
      "JcthDate": "2025-02-03",
      "JcthDateTimeEntry": "2025-02-03T18:35:31Z",
      "JcthDesc": "VPTEST101",
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": "VPTEST101",
      "JcthDefContCode": "N",
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2025-02-03",
      "JcthConvNum": 1,
      "JcthTransactionAmt": -50,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "2D408667BF147708E06327261DACD855",
      "JcthPost": null,
      "JcthIuCreateDate": "2025-02-03T18:35:31Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2D408667BF147708E06327261DACD855",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2D408667BF147708E06327261DACD855",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2D408667BF147708E06327261DACD855/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    },
    {
      "JcthCompCode": "ZZ",
      "JcthCompName": "CMiC Test Company",
      "JcthBchTypeCode": "C",
      "JcthBchNum": 101027,
      "JcthBchName": "VPTEST004",
      "JcthJourCode": "JC",
      "JcthJourName": "Job Costing",
      "JcthNum": 59845,
      "JcthCurrCode": "USD",
      "JcthCurrName": "US Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "DA",
      "JcthDate": "2025-01-30",
      "JcthDateTimeEntry": "2025-01-30T17:35:36Z",
      "JcthDesc": "VPTEST004",
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": "VPTEST004",
      "JcthDefContCode": "N",
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2025-01-30",
      "JcthConvNum": 1,
      "JcthTransactionAmt": -30,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "2CF03803425B0FCCE06327261DACB0EC",
      "JcthPost": null,
      "JcthIuCreateDate": "2025-01-30T17:35:36Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2CF03803425B0FCCE06327261DACB0EC",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2CF03803425B0FCCE06327261DACB0EC",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2CF03803425B0FCCE06327261DACB0EC/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    },
    {
      "JcthCompCode": "ZZ",
      "JcthCompName": "CMiC Test Company",
      "JcthBchTypeCode": "C",
      "JcthBchNum": 101319,
      "JcthBchName": "VPTEST101",
      "JcthJourCode": "JC",
      "JcthJourName": "Job Costing",
      "JcthNum": 59956,
      "JcthCurrCode": "USD",
      "JcthCurrName": "US Dollar",
      "JcthAccrualFlag": "N",
      "JcthUser": "DA",
      "JcthDate": "2025-02-03",
      "JcthDateTimeEntry": "2025-02-03T18:39:07Z",
      "JcthDesc": "VPTEST101",
      "JcthDefSrcCode": null,
      "JcthDefSrcDesc": null,
      "JcthDefRefCode": null,
      "JcthDefRefDesc": "VPTEST101",
      "JcthDefContCode": "N",
      "JcthDsrcCode": null,
      "JcthAdjJcdetailFlag": "N",
      "JcthRefDate": "2025-02-03",
      "JcthConvNum": 1,
      "JcthTransactionAmt": -23456789,
      "JcthCalledFromAppCode": "JC",
      "JcthVUuid": "2D42335563441151E06327261DAC3E5A",
      "JcthPost": null,
      "JcthIuCreateDate": "2025-02-03T18:39:07Z",
      "JcthIuUpdateDate": null,
      "links": [
        {
          "rel": "self",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2D42335563441151E06327261DAC3E5A",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "canonical",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2D42335563441151E06327261DAC3E5A",
          "name": "jctran",
          "kind": "item"
        },
        {
          "rel": "child",
          "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran/2D42335563441151E06327261DAC3E5A/child/JctrandViewObj",
          "name": "JctrandViewObj",
          "kind": "collection"
        }
      ]
    }
  ],
  "count": 5,
  "hasMore": true,
  "limit": 5,
  "offset": 0,
  "links": [
    {
      "rel": "self",
      "href": "https://qamob.cmicpaas.com:443/cmicqadaily/jc-rest-api/rest/1/jctran",
      "name": "jctran",
      "kind": "collection"
    }
  ]
}
object
Copyright © 2024 CMiC All Rights Reserved