WIP setup accounts

Set up accounts for the WIP setup object.

List WIP setup accounts

get/objects/construction-forecasting/wip-setup-account

Returns a collection with a key, ID, and link for each WIP setup account. 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/construction-forecasting/wip-setup-account/1"
      },
    • {
      • "id": "2",
      • "key": "2",
      • "href": "/objects/construction-forecasting/wip-setup-account/2"
      }
    ],
  • "ia::meta": {
    • "totalCount": 2,
    • "totalSuccess": 2,
    • "totalError": 0
    }
}

Get a WIP setup account

get/objects/construction-forecasting/wip-setup-account/{key}

Returns detailed information for a specified WIP setup account.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned key for the WIP setup account.

Example: 99
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "key": "1",
    • "id": "1",
    • "wipAccountType": "underbillingOffset",
    • "account": {
      • "key": 99,
      • "id": "1001",
      • "name": "CitiBank",
      • "href": "/objects/general-ledger/account/99"
      },
    • "audit": {
      • "createdDateTime": "2023-06-02T20:29:28Z",
      • "modifiedDateTime": "2023-06-02T20:29:28Z",
      • "createdByUser": {
        },
      • "modifiedByUser": {
        }
      },
    • "href": "/objects/construction-forecasting/wip-setup-account/1",
    • "wipSetup": {
      • "key": "123",
      • "id": "123",
      • "href": "/objects/construction-forecasting/wip-setup/123"
      }
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}