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
-`buildId`: The ID of the build created in the previous step.
75
+
-`buildUuid`: The ID of the build created in the previous step.
76
76
77
77
**Expected Response:**
78
78
@@ -81,18 +81,18 @@ mutation {
81
81
"data": {
82
82
"createSnapshotUpload": {
83
83
"id": "upload-id-here",
84
-
"uploadUrl": "image-upload-url-here",
84
+
"imageUploadUrl": "image-upload-url-here",
85
85
"domUploadUrl": "dom-upload-url-here"
86
86
}
87
87
}
88
88
}
89
89
```
90
90
91
91
-`id`: Upload ID to use in the subsequent steps.
92
-
-`uploadUrl`: The URL to upload the image in the next step.
92
+
-`imageUploadUrl`: The URL to upload the image in the next step.
93
93
-`domUploadUrl`: The URL to upload the DOM to (if desired and available). Explained in the optional step below.
94
94
95
-
Next, send a `PUT` request to `uploadUrl` with image file in the body of the request. Only **PNG** files are supported.
95
+
Next, send a `PUT` request to `imageUploadUrl` with image file in the body of the request. Only **PNG** files are supported.
96
96
97
97
**cURL Request:**
98
98
@@ -135,7 +135,7 @@ mutation {
135
135
createSnapshot(
136
136
input: {
137
137
buildUuid: "build-id-here",
138
-
uploadId: "upload-id-here",
138
+
uploadUuid: "upload-id-here",
139
139
name: "Your snapshot name",
140
140
operatingSystem: OS,
141
141
operatingSystemVersion: "os-version",
@@ -149,7 +149,7 @@ mutation {
149
149
}
150
150
```
151
151
-`buildUuid`: Build ID that was used in previous steps.
152
-
-`uploadId`: Upload ID acquired with `createSnapshotUpload` in the previous step.
152
+
-`uploadUuid`: Upload ID acquired with `createSnapshotUpload` in the previous step.
153
153
-`operatingSystem`: The operating system used to take the snapshot. Strongly advised to be filled in. Available options: `ANDROID`, `IOS`, `LINUX`, `MACOS`, `WINDOWS`.
154
154
-`operatingSystemVersion`: The operating system version. e.g. "14.5" for `MACOS` or "11" for `WINDOWS`.
155
155
-`browser`: The browser used to take the snapshot. Strongly advised to be filled in (if available). Available options: `CHROME`, `EDGE`, `FIREFOX`, `PLAYWRIGHT_WEBKIT`, `SAFARI`.
0 commit comments