Nest Changelog

1.41.2 PRE

9/12/2023

1.41.3 PRE

9/13/2023

GET /badges/milestones

Get a list of milestones

Response Body
{
  data: List<{
    badge?: {
      eventCode?: string,
      guid?: string,
      images?: {
        default?: string,
        hd?: string,
        portrait?: string,
        sd?: string,
        square?: string,
      },
      translations?: record,
    },
    condition?: {
      condition?: {
        comparator?: string,
        key?: string,
        value?: string,
      },
      description?: string,
      id?: number,
    },
    count?: number,
  }>,

}

GET /badges/milestones

Get a list of milestones

Response Body
{
  data: List<{
    badge?: {
      eventCode?: string,
      guid?: string,
      images?: {
        default?: string,
        hd?: string,
        portrait?: string,
        sd?: string,
        square?: string,
      },
      translations?: record,
    },
    condition?: {
      condition?: {
        comparator?: string,
        key?: string,
        value?: string,
      },
      description?: string,
      id?: number,
    },
    count?: number,
  }>,
+ pagination: {
+   page?: number,
+   skip?: number,
+   take?: number,
+   total?: {
+     pages?: number,
+     rows?: number,
+   },
+ },
}
WORK IN PROGRESS