@archastro/sdk
    Preparing search index...

    Interface CustomObjectUpdateFieldsResponse

    Response returned after updating one or more fields on a custom object. Confirms the object that was modified and the field values that were applied.

    interface CustomObjectUpdateFieldsResponse {
        fields: Record<string, unknown>;
        id: string;
        operation_id: string;
    }
    Index

    Properties

    fields: Record<string, unknown>

    The materialized object fields after the update.

    id: string

    ID of the custom object that was updated (cobj_...).

    operation_id: string

    Idempotency key acknowledged for this update.