@@ -258,6 +258,7 @@ Get SSO information for the current user
258258| Parameter | Type | Required | Description |
259259| --------- | ---- | -------- | ----------- |
260260| ` expand ` | string | No | Comma-separated fields to expand |
261+ | ` cursor ` | string | No | Pagination cursor |
261262
262263#### Output
263264
@@ -476,14 +477,14 @@ List all employment types
476477| Parameter | Type | Description |
477478| --------- | ---- | ----------- |
478479| ` employmentTypes ` | array | List of employmentTypes |
479- | ↳ ` id ` | string | Employment type ID |
480- | ↳ ` created_at ` | string | Record creation date |
481- | ↳ ` updated_at ` | string | Record update date |
482- | ↳ ` label ` | string | Employment type label |
483- | ↳ ` name ` | string | Employment type name |
484- | ↳ ` type ` | string | Type \( CONTRACTOR, EMPLOYEE\) |
485- | ↳ ` compensation_time_period ` | string | Compensation period \( HOURLY, SALARIED\) |
486- | ↳ ` amount_worked ` | string | Amount worked \( PART-TIME, FULL-TIME, TEMPORARY\) |
480+ | ` ↳ id ` | string | Employment type ID |
481+ | ` ↳ created_at ` | string | Record creation date |
482+ | ` ↳ updated_at ` | string | Record update date |
483+ | ` ↳ label ` | string | Employment type label |
484+ | ` ↳ name ` | string | Employment type name |
485+ | ` ↳ type ` | string | Type \( CONTRACTOR, EMPLOYEE\) |
486+ | ` ↳ compensation_time_period ` | string | Compensation period \( HOURLY, SALARIED\) |
487+ | ` ↳ amount_worked ` | string | Amount worked \( PART-TIME, FULL-TIME, TEMPORARY\) |
487488| ` totalCount ` | number | Number of items returned |
488489| ` nextLink ` | string | Link to next page of results |
489490
@@ -1430,8 +1431,14 @@ Create a field on a custom object
14301431| ` name ` | string | Yes | Field name |
14311432| ` description ` | string | No | Description |
14321433| ` dataType ` | json | Yes | Data type configuration |
1434+ | ` required ` | boolean | No | Whether the field is required |
1435+ | ` rqlDefinition ` | json | No | RQL definition object |
14331436| ` isUnique ` | boolean | No | Whether field is unique |
1437+ | ` formulaAttrMetas ` | json | No | Formula attribute metadata |
1438+ | ` section ` | json | No | Section configuration |
14341439| ` enableHistory ` | boolean | No | Enable history tracking |
1440+ | ` derivedFieldFormula ` | string | No | Derived field formula expression |
1441+ | ` derivedAggregatedField ` | json | No | Derived aggregated field configuration |
14351442
14361443#### Output
14371444
@@ -1466,8 +1473,14 @@ Update a field on a custom object
14661473| ` name ` | string | No | Field name |
14671474| ` description ` | string | No | Description |
14681475| ` dataType ` | json | No | Data type |
1476+ | ` required ` | boolean | No | Whether the field is required |
1477+ | ` rqlDefinition ` | json | No | RQL definition object |
14691478| ` isUnique ` | boolean | No | Is unique |
1479+ | ` formulaAttrMetas ` | json | No | Formula attribute metadata |
1480+ | ` section ` | json | No | Section configuration |
14701481| ` enableHistory ` | boolean | No | Enable history |
1482+ | ` derivedFieldFormula ` | string | No | Derived field formula expression |
1483+ | ` nameFieldDetails ` | json | No | Name field details configuration |
14711484
14721485#### Output
14731486
@@ -1528,6 +1541,10 @@ List all records for a custom object
15281541| ` ↳ updated_at ` | string | Record update date |
15291542| ` ↳ name ` | string | Record name |
15301543| ` ↳ external_id ` | string | External ID |
1544+ | ` ↳ created_by ` | json | Created by user \( id, display_value, image\) |
1545+ | ` ↳ last_modified_by ` | json | Last modified by user \( id, display_value, image\) |
1546+ | ` ↳ owner_role ` | json | Owner role \( id, display_value, image\) |
1547+ | ` ↳ system_updated_at ` | string | System update timestamp |
15311548| ` ↳ data ` | json | Full record data including dynamic fields |
15321549| ` totalCount ` | number | Number of records returned |
15331550| ` nextLink ` | string | Next page link |
@@ -1554,6 +1571,10 @@ Get a specific custom object record
15541571| ` updated_at ` | string | Updated timestamp |
15551572| ` name ` | string | Name |
15561573| ` external_id ` | string | External ID |
1574+ | ` created_by ` | json | Created by user |
1575+ | ` last_modified_by ` | json | Last modified by user |
1576+ | ` owner_role ` | json | Owner role |
1577+ | ` system_updated_at ` | string | System update timestamp |
15571578| ` data ` | json | Full record data |
15581579
15591580---
@@ -1578,10 +1599,47 @@ Get a custom object record by external ID
15781599| ` updated_at ` | string | Updated timestamp |
15791600| ` name ` | string | Name |
15801601| ` external_id ` | string | External ID |
1602+ | ` created_by ` | json | Created by user |
1603+ | ` last_modified_by ` | json | Last modified by user |
1604+ | ` owner_role ` | json | Owner role |
1605+ | ` system_updated_at ` | string | System update timestamp |
15811606| ` data ` | json | Full record data |
15821607
15831608---
15841609
1610+ ### ` rippling_query_custom_object_records `
1611+
1612+ Query custom object records with filters
1613+
1614+ #### Input
1615+
1616+ | Parameter | Type | Required | Description |
1617+ | --------- | ---- | -------- | ----------- |
1618+ | ` customObjectApiName ` | string | Yes | Custom object API name |
1619+ | ` query ` | string | No | Query expression |
1620+ | ` limit ` | number | No | Max results to return |
1621+ | ` cursor ` | string | No | Pagination cursor |
1622+
1623+ #### Output
1624+
1625+ | Parameter | Type | Description |
1626+ | --------- | ---- | ----------- |
1627+ | ` records ` | array | Matching records |
1628+ | ` ↳ id ` | string | Record ID |
1629+ | ` ↳ created_at ` | string | Record creation date |
1630+ | ` ↳ updated_at ` | string | Record update date |
1631+ | ` ↳ name ` | string | Record name |
1632+ | ` ↳ external_id ` | string | External ID |
1633+ | ` ↳ created_by ` | json | Created by user \( id, display_value, image\) |
1634+ | ` ↳ last_modified_by ` | json | Last modified by user \( id, display_value, image\) |
1635+ | ` ↳ owner_role ` | json | Owner role \( id, display_value, image\) |
1636+ | ` ↳ system_updated_at ` | string | System update timestamp |
1637+ | ` ↳ data ` | json | Full record data |
1638+ | ` totalCount ` | number | Number of records returned |
1639+ | ` cursor ` | string | Pagination cursor for next page |
1640+
1641+ ---
1642+
15851643### ` rippling_create_custom_object_record `
15861644
15871645Create a custom object record
@@ -1602,6 +1660,10 @@ Create a custom object record
16021660| ` updated_at ` | string | Update date |
16031661| ` name ` | string | Record name |
16041662| ` external_id ` | string | External ID |
1663+ | ` created_by ` | json | Created by user |
1664+ | ` last_modified_by ` | json | Last modified by user |
1665+ | ` owner_role ` | json | Owner role |
1666+ | ` system_updated_at ` | string | System update timestamp |
16051667| ` data ` | json | Full record data |
16061668
16071669---
@@ -1627,6 +1689,10 @@ Update a custom object record
16271689| ` updated_at ` | string | Update date |
16281690| ` name ` | string | Record name |
16291691| ` external_id ` | string | External ID |
1692+ | ` created_by ` | json | Created by user |
1693+ | ` last_modified_by ` | json | Last modified by user |
1694+ | ` owner_role ` | json | Owner role |
1695+ | ` system_updated_at ` | string | System update timestamp |
16301696| ` data ` | json | Full record data |
16311697
16321698---
@@ -1650,35 +1716,6 @@ Delete a custom object record
16501716
16511717---
16521718
1653- ### ` rippling_query_custom_object_records `
1654-
1655- Query custom object records with filters
1656-
1657- #### Input
1658-
1659- | Parameter | Type | Required | Description |
1660- | --------- | ---- | -------- | ----------- |
1661- | ` customObjectApiName ` | string | Yes | Custom object API name |
1662- | ` query ` | string | No | Query expression |
1663- | ` limit ` | number | No | Max results to return |
1664- | ` cursor ` | string | No | Pagination cursor |
1665-
1666- #### Output
1667-
1668- | Parameter | Type | Description |
1669- | --------- | ---- | ----------- |
1670- | ` records ` | array | Matching records |
1671- | ` ↳ id ` | string | Record ID |
1672- | ` ↳ created_at ` | string | Record creation date |
1673- | ` ↳ updated_at ` | string | Record update date |
1674- | ` ↳ name ` | string | Record name |
1675- | ` ↳ external_id ` | string | External ID |
1676- | ` ↳ data ` | json | Full record data |
1677- | ` totalCount ` | number | Number of records returned |
1678- | ` cursor ` | string | Pagination cursor for next page |
1679-
1680- ---
1681-
16821719### ` rippling_bulk_create_custom_object_records `
16831720
16841721Bulk create custom object records
@@ -2274,6 +2311,7 @@ Get a report run by ID
22742311| ` report_id ` | string | Report ID |
22752312| ` status ` | string | Run status |
22762313| ` result ` | json | Report result \( file_url, expires_at, output_type\) |
2314+ | ` __meta ` | json | Metadata including redacted_fields |
22772315
22782316---
22792317
0 commit comments