Nest Changelog

1.29.2 PRE

6/8/2023

1.29.3 PRE

6/8/2023

POST /webhooks/orders

Request Body
{
  customer?: {
    email?: string,
    firstName?: string,
    lastName?: string,
  },
  initiatedBy: {
    id?: number,
  },
  internalNote: string,
  isFirstPeriodPrepaid?: bool,
- offerGuid?: string,

publicNote: string, reason: { code?: 'competitor' | 'healthIssues' | 'notMetExpectations' | 'pricing' | 'noLongerHaveEquipment' | 'busy' | 'other' | 'planChange', message?: string, }, retailer?: { orderCode?: string, partner?: { id?: number, }, storeCode: string, }, sourceName?: 'shopify' | 'amazon' | 'ios' | 'android' | 'organic' | 'free', utm: { campaign: string, content: string, medium: string, source: string, term: string, }, }

POST /webhooks/orders

Request Body
{
  customer?: {
    email?: string,
    firstName?: string,
    lastName?: string,
  },
  initiatedBy: {
    id?: number,
  },
  internalNote: string,
  isFirstPeriodPrepaid?: bool,

+ offerGuid: string, publicNote: string, reason: { code?: 'competitor' | 'healthIssues' | 'notMetExpectations' | 'pricing' | 'noLongerHaveEquipment' | 'busy' | 'other' | 'planChange', message?: string, }, retailer?: { orderCode?: string, partner?: { id?: number, }, storeCode: string, }, sourceName?: 'shopify' | 'amazon' | 'ios' | 'android' | 'organic' | 'free', utm: { campaign: string, content: string, medium: string, source: string, term: string, }, }
Added endpoints

POST /users/fix-missed-orders

Admin only. You do not want this endpoint.

Guard: admin

Response Body
{
  data: string,
}
WORK IN PROGRESS