Skip to content

Commit 27ed02a

Browse files
authored
update conversation endpoint CvCDAs accept both iso8601 and unix timestamp values (#231)
1 parent 2d148cd commit 27ed02a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

descriptions/0/api.intercom.io.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12591,6 +12591,15 @@ paths:
1259112591
type: user
1259212592
components:
1259312593
schemas:
12594+
datetime:
12595+
oneOf:
12596+
- title: string
12597+
type: string
12598+
format: date-time
12599+
description: A date and time following the ISO8601 notation.
12600+
- title: integer
12601+
type: integer
12602+
description: A date and time as UNIX timestamp notation.
1259412603
activity_log:
1259512604
title: Activity Log
1259612605
type: object
@@ -16389,7 +16398,15 @@ components:
1638916398
additionalProperties:
1639016399
anyOf:
1639116400
- type: string
16401+
- type: integer
16402+
- $ref: "#/components/schemas/datetime"
1639216403
- "$ref": "#/components/schemas/custom_object_instance_list"
16404+
example:
16405+
paid_subscriber: true
16406+
monthly_spend: 155.5
16407+
team_mates: 9
16408+
start_date_iso8601: "2023-03-04T09:46:14Z"
16409+
end_date_timestamp: 1677923174
1639316410
custom_object_instance:
1639416411
title: Custom Object Instance
1639516412
type: object

0 commit comments

Comments
 (0)