@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;
    }
    Index

    Properties

    Properties

    fields: Record<string, unknown>

    Map of field names to their new values as applied during the update. Only the fields that were included in the update request are present.

    id: string

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