Selling Partner API SDK for JavaScript
    Preparing search index...

    Individual JSON Patch operation for an HTTP PATCH request.

    interface PatchOperation {
        op: PatchOperationOpEnum;
        path: string;
        value?: { [key: string]: any }[];
    }
    Index

    Properties

    Properties

    Type of JSON Patch operation. Supported JSON Patch operations include add, replace, merge and delete. Refer to https://tools.ietf.org/html/rfc6902.

    path: string

    JSON Pointer path of the element to patch. Refer to JavaScript Object Notation (JSON) Patch for more information.

    value?: { [key: string]: any }[]

    JSON value to add, replace, merge or delete.