Resource for handling of postponed FUM requests
Get the contents of the temporary file
name | type | description |
---|---|---|
filename | path | filename |
media type | data type | description |
---|---|---|
application/json | object (JSON) | contents |
GET /fum/{filename}
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
...
Post the result of the postponed FUM
name | type | description |
---|---|---|
filename | path | filename |
media type | data type | description |
---|---|---|
application/json | FUMResult (JSON) | FUM result |
media type | data type | description |
---|---|---|
application/json | FUMStatusResponse (JSON) | response |
POST /fum/{filename}
Content-Type: application/json
Accept: application/json
{
"status" : "POSTPONED",
"msg" : "...",
"filename" : "...",
"mimetype" : "...",
"url" : "..."
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"status" : "ERROR",
"type" : "...",
"msg" : "..."
}