Inventory Update API Endpoint

Purpose:

Allow to update stock level real time.

API Endpoint Details:

Method

Endpoint

POST

/api/webhooks/updates/inventory

Request Headers:

Header

Required

Description

tenantId

Yes

Tenant Id

X-API-KEY

Yes

API key for authentication

Request Payload (JSON):

{
  "id": "1622203826274",
  "variantId": "14607116304482",
  "stock": 1
}

Field Description:

Response:

{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 401,
    "detail": "Invalid API Key",
    "errors": [
        {
            "field": "x-api-key",
            "message": "Invalid API Key"
        }
    ]
}
{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 403,
    "detail": "Invalid TenantId: ",
    "errors": [
        {
            "field": "tenantId",
            "message": "Invalid TenantId: "
        }
    ]
}
{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 400,
    "detail": "Validation errors.",
    "errors": [
        {
            "field": "Id",
            "message": "Id is required."
        },
        {
            "field": "VariantId",
            "message": "VariantId is required."
        }
    ]
}

Price Update API Endpoint

Purpose:

Allow to update product variant price real time.

API Endpoint Details:

Method

Endpoint

POST

https://dev-greenback-fn-importerwebhook.azurewebsites.net/api/webhooks/updates/price

Request Headers:

Header

Required

Description

tenantId

Yes

Tenant Id

X-API-KEY

Yes

API key for authentication

Request Payload (JSON):

{
  "id": "1622203826274",
  "variantId": "14607116304482",
  "price": 500.32,
  "originalPrice": 700.53
}

Field Description:

Response:

{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 401,
    "detail": "Invalid API Key",
    "errors": [
        {
            "field": "x-api-key",
            "message": "Invalid API Key"
        }
    ]
}
{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 403,
    "detail": "Invalid TenantId: ",
    "errors": [
        {
            "field": "tenantId",
            "message": "Invalid TenantId: "
        }
    ]
}
{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 400,
    "detail": "Validation errors.",
    "errors": [
        {
            "field": "Id",
            "message": "Id is required."
        },
        {
            "field": "VariantId",
            "message": "VariantId is required."
        }
    ]
}

Product Delete API Endpoint (advanced)

Purpose:

Allow to delete product real time.

API Endpoint Details:

Method

Endpoint

POST

/api/webhooks/deletes/product

Request Headers:

Header

Required

Description

tenantId

Yes

Tenant Id

X-API-KEY

Yes

API key for authentication

Request Payload (JSON):

{
  "id": "1622203826274"
}

Field Description:

Response:

{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 401,
    "detail": "Invalid API Key",
    "errors": [
        {
            "field": "x-api-key",
            "message": "Invalid API Key"
        }
    ]
}
{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 403,
    "detail": "Invalid TenantId: ",
    "errors": [
        {
            "field": "tenantId",
            "message": "Invalid TenantId: "
        }
    ]
}
{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 400,
    "detail": "Validation errors.",
    "errors": [
        {
            "field": "Id",
            "message": "Id is required."
        }
    ]
}

Product Create API Endpoint (Advanced)

Purpose:

Allow to create product real time.

API Endpoint Details:

Method

Endpoint

POST

https://dev-greenback-fn-importerwebhook.azurewebsites.net/api/webhooks/creates/product?

Request Headers:

Header

Required

Description

tenantId

Yes

Tenant Id

X-API-KEY

Yes

API key for authentication

Request Payload (JSON):

{
  "product": {
    "id": "string",
    "title": "string",
    "body_html": "string"
    ...
  }
}

Field Description:

Response:

{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 401,
    "detail": "Invalid API Key",
    "errors": [
        {
            "field": "x-api-key",
            "message": "Invalid API Key"
        }
    ]
}
{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
    "title": "One or more validation errors occurred.",
    "status": 403,
    "detail": "Invalid TenantId: ",
    "errors": [
        {
            "field": "tenantId",
            "message": "Invalid TenantId: "
        }
    ]
}
{
  "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
  "title": "One or more validation errors occurred.",
  "status": 400,
  "errors": {
    "$": [
      "JSON deserialization for type 'Preezie.Greenback.Importer.Application.ProductWebhook.Commands.CustomPriceUpdateCommand' was missing required properties including: 'shopDomain'."
    ],
    "command": [
      "The command field is required."
    ]
  },
  "traceId": "00-a63adea0f8289d1b82789107de0bbdf4-888ae9d6b5273ae5-01"
}

Authentication & Security