Skip to main content

Fulfillment config history API (v0)

Download OpenAPI specification:Download

Information on historical fulfillment configuration data

Get all revisions

This endpoint can be used to get all revisions of the fulfillment config for the given tenant

Authorizations:
newStoreAccessToken

Responses

Response samples

Content type
application/json
[
  • {
    },
  • {
    },
  • {
    }
]

Get revision by id

This endpoint can be used to get a revision (with body) of the fulfillment config for the given tenant

Authorizations:
newStoreAccessToken
path Parameters
id
required
string

ID of the revision to retrieve

Responses

Response samples

Content type
application/json
{
  • "revision": 2,
  • "fulfillment_config": {
    },
  • "updated_by": "user1",
  • "created_at": "2023-05-12T19:12:57.258273Z",
  • "tenant": "dodici"
}

Put revision by id

This endpoint can be used to set any previous revision of the fulfillment configuration

Authorizations:
newStoreAccessToken
path Parameters
id
required
string

ID of the revision to set

Responses

Response samples

Content type
application/json
{
  • "revision": 2,
  • "fulfillment_config": {
    },
  • "updated_by": "user1",
  • "created_at": "2023-05-12T19:12:57.258273Z",
  • "tenant": "dodici"
}