You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _data/vector_pro_endpoints/03.yaml
+76-4Lines changed: 76 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,11 @@ endpoints:
46
46
description: |-
47
47
Retrieves a paginated list of all sites for the authenticated account.
48
48
Results include each site's environments and their associated domains.
49
+
50
+
Use `search` to filter by customer ID or subdomain, `status` to filter by
51
+
site lifecycle state, and `sort`/`direction` to control ordering. The
52
+
`last_deployed_at` field is computed from the most recent completed
53
+
deployment across all environments and can also be used as a sort field.
49
54
authenticated: true
50
55
deprecated: false
51
56
headers:
@@ -66,6 +71,50 @@ endpoints:
66
71
exampleWasSpecified: true
67
72
nullable: false
68
73
deprecated: false
74
+
search:
75
+
custom: []
76
+
name: search
77
+
description: 'Search by `your_customer_id` or `subdomain` (partial, case-insensitive).'
78
+
required: false
79
+
example: acme
80
+
type: string
81
+
enumValues: []
82
+
exampleWasSpecified: true
83
+
nullable: true
84
+
deprecated: false
85
+
status:
86
+
custom: []
87
+
name: status
88
+
description: 'Filter by site status. Must be one of: `pending`, `activation_requested`, `active`, `suspension_requested`, `suspended`, `unsuspension_requested`, `termination_requested`, `terminated`, `canceled`.'
89
+
required: false
90
+
example: active
91
+
type: string
92
+
enumValues: []
93
+
exampleWasSpecified: true
94
+
nullable: false
95
+
deprecated: false
96
+
sort:
97
+
custom: []
98
+
name: sort
99
+
description: 'Sort results by the given field. Must be one of: `created_at`, `updated_at`, `status`, `your_customer_id`, `last_deployed_at`. Default: `created_at`.'
100
+
required: false
101
+
example: your_customer_id
102
+
type: string
103
+
enumValues: []
104
+
exampleWasSpecified: true
105
+
nullable: false
106
+
deprecated: false
107
+
direction:
108
+
custom: []
109
+
name: direction
110
+
description: 'Sort direction. Must be `asc` or `desc`. Default: `desc`.'
0 commit comments