Create a directory at the specified path on an endpoint filesystem. The endpoint must be activated before performing this operation.

  • Parameters

    • endpoint_xid: string
    • options:
          | undefined
          | { payload: Omit<{ DATA_TYPE: "mkdir"; path: string }, "DATA_TYPE"> } & {
              headers?: Headers;
              query?: {
                  [key: string]:
                      | undefined
                      | null
                      | string
                      | number
                      | boolean
                      | (undefined | null | string | number)[];
              };
          }
    • OptionalsdkOptions: SDKOptions

    Returns Promise<Response>