getExportFile

Click to copy

Retrieve a Workflow Manager configuration file

Retrieves a Workflow Manager configuration (.wmc) file using the export ID provided by the export async endpoint.

Query parameters

NameTypeRequired

token

string

Path parameters

NameTypeRequired

orgId

string

itemId

string

exportId

string

Examples

Request

Use dark colors for code blocksCopy
1
2
3
4
# You can also use wget
curl -X GET /{orgId}/admin/{itemId}/exportAsync/{exportId} \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

Response

200 Response

404 Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "error": {
    "message": "string",
    "type": "string",
    "details": [
      {
        "path": "string",
        "errors": [
          "string"
        ]
      }
    ]
  }
}
StatusMeaningDescriptionSchema

200

OK

The exported configuration

string

404

Not Found

error

WorkflowJsonExceptionDTO

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.