-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfieldwire-create-task-example.json
More file actions
57 lines (57 loc) · 1.82 KB
/
fieldwire-create-task-example.json
File metadata and controls
57 lines (57 loc) · 1.82 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
{
"summary": "Create a punch-list task on a floorplan",
"description": "Example POST /api/v3/projects/{project_id}/tasks payload that creates a punch list task assigned to a foreman with a due date and one custom attribute.",
"request": {
"method": "POST",
"url": "https://client-api.us.fieldwire.com/api/v3/projects/123456/tasks",
"headers": {
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"Fieldwire-Version": "2026-04-07",
"Content-Type": "application/json"
},
"body": {
"name": "Repair drywall scuff in Room 204",
"description": "Drywall scuff next to door frame; needs spackle and touch-up paint.",
"status_id": 4001,
"priority": 2,
"category": "Punch List",
"floorplan_id": 78901,
"owner_user_id": 55211,
"due_at": "2026-06-02T17:00:00Z",
"custom_attributes": {
"trade": "Painter",
"room_number": "204"
}
}
},
"response": {
"status": 201,
"headers": {
"Content-Type": "application/json",
"ratelimit-limit-minute": "120",
"ratelimit-remaining-minute": "118",
"ratelimit-limit-hour": "3000",
"ratelimit-remaining-hour": "2987"
},
"body": {
"id": 99887766,
"project_id": 123456,
"name": "Repair drywall scuff in Room 204",
"description": "Drywall scuff next to door frame; needs spackle and touch-up paint.",
"status_id": 4001,
"priority": 2,
"category": "Punch List",
"floorplan_id": 78901,
"owner_user_id": 55211,
"creator_user_id": 55100,
"due_at": "2026-06-02T17:00:00Z",
"completed_at": null,
"created_at": "2026-05-25T14:32:11Z",
"updated_at": "2026-05-25T14:32:11Z",
"custom_attributes": {
"trade": "Painter",
"room_number": "204"
}
}
}
}