Member Junction
    Preparing search index...

    Result of a CRUD operation (create, update, or delete)

    interface CRUDResult {
        ErrorMessage?: string;
        ExternalID?: string;
        StatusCode: number;
        Success: boolean;
    }
    Index

    Properties

    ErrorMessage?: string

    Error message if the operation failed

    ExternalID?: string

    External ID of the created/updated record

    StatusCode: number

    HTTP status code (for REST connectors) or operation-specific code

    Success: boolean

    Whether the operation succeeded