Skip to content

Get Offer Import Context

Request

Get a single offer import context by its ID.

Security
BearerAuth
Path
idstringrequired

The ID of the offer import context.

Headers
Acceptstring(OfferImportContextAcceptHeader)required

Set this to application/api.luminovo.offer-import-context-v1+json.

Value:"application/api.luminovo.offer-import-context-v1+json"
GET
/offer-import-contexts/{id}
curl -i -X GET \
  'https://api.luminovo.com/offer-import-contexts/{id}' \
  -H 'Accept: application/api.luminovo.offer-import-context-v1+json' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Single offer import context.

Bodyapplication/json
idstring, (uuid)required
namestringrequired
descriptionstring or null
originstring(types.offer_import_context.v1.Origin)required

The channel an import context's offers arrived through.

  • CsvIntegration: the nightly job pulling CSV files from a customer's ERP storage.
  • ApiIntegration: programmatic import through the offers API.
  • ManualFileUpload: a CSV file uploaded in the UI.
Enum:"CsvIntegration""ApiIntegration""ManualFileUpload"
created_atstring, (date-time)required
updated_atstring, (date-time)required
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "description": "string", "origin": "CsvIntegration", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }