Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 897 Bytes

File metadata and controls

24 lines (18 loc) · 897 Bytes

UltracartClient::BulkJobRequest

Properties

Name Type Description Notes
operation String Mutation mode - insert (create only) or upsert (create or update). Defaults to insert. This is always a mutation verb — the bulk surface writes only and has no read / query mode. upsert is currently supported for customer only. [optional]
s3_key String The s3_key returned by the upload-url endpoint [optional]
webhook_secret String Optional shared secret echoed in the completion POST's Authorization header [optional]
webhook_url String Optional URL to POST once, on completion [optional]

Example

require 'ultracart_api'

instance = UltracartClient::BulkJobRequest.new(
  operation: null,
  s3_key: null,
  webhook_secret: null,
  webhook_url: null
)