-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfieldwire-forms-api-openapi.yml
More file actions
297 lines (297 loc) · 8.44 KB
/
fieldwire-forms-api-openapi.yml
File metadata and controls
297 lines (297 loc) · 8.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
openapi: 3.1.0
info:
title: Fieldwire Forms API
description: |
Build account-level form templates (sections, inputs, custom data types,
statuses, permissions) and capture form records (with section records,
values, signatures, and markups) in the field. Powers Fieldwire's daily
reports, safety inspections, QA/QC checklists, and any custom data
collection workflow.
version: v3.1
contact:
name: Fieldwire Developer Support
url: https://developers.fieldwire.com/
license:
name: Fieldwire Terms of Service
url: https://www.fieldwire.com/terms/
servers:
- url: https://client-api.us.fieldwire.com/api/v3
description: US Region (project-scoped form records)
- url: https://client-api.eu.fieldwire.com/api/v3
description: EU Region (project-scoped form records)
- url: https://client-api.super.fieldwire.com
description: Super Host (account-level form templates)
security:
- BearerAuth: []
tags:
- name: Form Templates
description: Account-level form template definitions, publication, and transfer.
- name: Form Sections
description: Section structure within a form template.
- name: Form Inputs
description: Inputs (text, number, photo, signature, choice, etc.) inside a section.
- name: Form Records
description: Captured form responses per project.
paths:
/account/form_templates/{form_template_id}/sections:
get:
operationId: getFormTemplateSections
summary: Get Form Template Sections
tags: [Form Sections]
parameters:
- $ref: '#/components/parameters/FormTemplateId'
responses:
'200':
description: Section list.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/FormTemplateSection'
post:
operationId: createFormTemplateSection
summary: Create Form Template Section
tags: [Form Sections]
parameters:
- $ref: '#/components/parameters/FormTemplateId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FormTemplateSection'
responses:
'201':
description: Created section.
content:
application/json:
schema:
$ref: '#/components/schemas/FormTemplateSection'
/account/form_templates/{form_template_id}/sections/{section_id}/inputs:
get:
operationId: getFormTemplateSectionInputs
summary: Get Form Template Section Inputs
tags: [Form Inputs]
parameters:
- $ref: '#/components/parameters/FormTemplateId'
- $ref: '#/components/parameters/SectionId'
responses:
'200':
description: Input list.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/FormTemplateInput'
post:
operationId: createFormTemplateSectionInput
summary: Create Form Template Section Input
tags: [Form Inputs]
parameters:
- $ref: '#/components/parameters/FormTemplateId'
- $ref: '#/components/parameters/SectionId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FormTemplateInput'
responses:
'201':
description: Created input.
content:
application/json:
schema:
$ref: '#/components/schemas/FormTemplateInput'
/projects/{project_id}/forms:
get:
operationId: getFormsInProject
summary: Get Forms In Project
tags: [Form Records]
parameters:
- $ref: '#/components/parameters/ProjectId'
responses:
'200':
description: Form record list.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/FormRecord'
post:
operationId: createFormInProject
summary: Create Form In Project
tags: [Form Records]
parameters:
- $ref: '#/components/parameters/ProjectId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FormRecordCreate'
responses:
'201':
description: Created form record.
content:
application/json:
schema:
$ref: '#/components/schemas/FormRecord'
/projects/{project_id}/forms/{form_id}:
get:
operationId: getFormById
summary: Get Form By ID
description: Returns the form record with all section records, values, and signatures.
tags: [Form Records]
parameters:
- $ref: '#/components/parameters/ProjectId'
- $ref: '#/components/parameters/FormId'
responses:
'200':
description: Form record.
content:
application/json:
schema:
$ref: '#/components/schemas/FormRecordFull'
components:
securitySchemes:
BearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
parameters:
ProjectId:
name: project_id
in: path
required: true
schema:
type: integer
format: int64
FormTemplateId:
name: form_template_id
in: path
required: true
schema:
type: integer
format: int64
SectionId:
name: section_id
in: path
required: true
schema:
type: integer
format: int64
FormId:
name: form_id
in: path
required: true
schema:
type: integer
format: int64
schemas:
FormTemplateSection:
type: object
properties:
id:
type: integer
format: int64
form_template_id:
type: integer
format: int64
name:
type: string
position:
type: number
format: double
is_repeatable:
type: boolean
FormTemplateInput:
type: object
properties:
id:
type: integer
format: int64
section_id:
type: integer
format: int64
name:
type: string
kind:
type: string
enum: [text, number, boolean, choice, multi_choice, date, time, datetime, photo, signature, attachment]
is_required:
type: boolean
data_type_id:
type: integer
format: int64
position:
type: number
format: double
FormRecord:
type: object
properties:
id:
type: integer
format: int64
project_id:
type: integer
format: int64
form_template_id:
type: integer
format: int64
name:
type: string
status:
type: string
enum: [draft, in_review, approved, rejected]
created_at:
type: string
format: date-time
updated_at:
type: string
format: date-time
FormRecordCreate:
type: object
required: [form_template_id]
properties:
form_template_id:
type: integer
format: int64
name:
type: string
FormRecordFull:
allOf:
- $ref: '#/components/schemas/FormRecord'
- type: object
properties:
section_records:
type: array
items:
type: object
properties:
id:
type: integer
format: int64
section_id:
type: integer
format: int64
values:
type: array
items:
type: object
properties:
input_id:
type: integer
format: int64
value:
description: Input value (type depends on input kind).
oneOf:
- type: string
- type: number
- type: boolean
- type: array
items:
type: string