File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -211,17 +211,17 @@ The request **SHOULD** return a status `202 Accepted` with a link in the `Conten
211
211
``` http
212
212
HTTP/1.1 202 Accepted
213
213
Content-Type: application/vnd.api+json
214
- Content-Location: https://example.com/photos/queue- jobs/5234
214
+ Content-Location: https://example.com/photos/jobs/5234
215
215
216
216
{
217
217
"data": {
218
- "type": "queue- jobs",
218
+ "type": "jobs",
219
219
"id": "5234",
220
220
"attributes": {
221
221
"status": "Pending request, waiting other process"
222
222
},
223
223
"links": {
224
- "self": "/photos/queue- jobs/5234"
224
+ "self": "/photos/jobs/5234"
225
225
}
226
226
}
227
227
}
@@ -230,7 +230,7 @@ Content-Location: https://example.com/photos/queue-jobs/5234
230
230
To check the status of the job process, a client can send a request to the location given earlier.
231
231
232
232
``` http
233
- GET /photos/queue- jobs/5234 HTTP/1.1
233
+ GET /photos/jobs/5234 HTTP/1.1
234
234
Accept: application/vnd.api+json
235
235
```
236
236
@@ -243,13 +243,13 @@ Retry-After: 10
243
243
244
244
{
245
245
"data": {
246
- "type": "queue- jobs",
246
+ "type": "jobs",
247
247
"id": "5234",
248
248
"attributes": {
249
249
"status": "Pending request, waiting other process"
250
250
},
251
251
"links": {
252
- "self": "/photos/queue- jobs/5234"
252
+ "self": "/photos/jobs/5234"
253
253
}
254
254
}
255
255
}
You can’t perform that action at this time.
0 commit comments