Query Tasks

Query Tasks

Shows information about the product

Request
URI
GET
https://{api_host}//tasks
COPY
Query Parameters
string
destinationOrg
Optional

Optional case sensitive filtering field, available only to admins. If present, filtering by user is not supported.

destinationOrg example
org2
string
endTimeAfter
Optional

If present, applies greater-than filtering by endTime.

endTimeAfter example
1499929500000
string
endTimeBefore
Optional

If present, applies less-than filtering by endTime.

endTimeBefore example
1499929599999
string
ids
Optional

If present, the returned tasks' IDs will be in the given list. Comma-separated task IDs are expected.

ids example
2bfb7696-3aa1-49d3-bb40-d9e97df1baba,107102e0-e03b-404e-8e17-0688c657a74b
string
limit
Optional

Query limit - maximum number of items this query should retrieve. If omitted or higher than the server's limits, defaults to 100.

limit example
10
string
offset
Optional

Query offset - how much items to skip, before retrieving the actual items. If omitted, defaults to 0.

offset example
10
string
resourceId
Optional

If present, applies equals filtering by workflowinfo.resourceId.

resourceId example
C4-ec991bd5-af9d-446a-8599-5b693842c4a3
string
resourceType
Optional

If present, applies equals filtering by workflowinfo.resourceType.

resourceType example
vmReplication
string
site
Optional

Optional site to retrieve the task from. Could be a remote site or the local one.

site example
site2
string
sort
Optional

Optional site to retrieve the task from. Could be a remote site or the local one.

sort example
sourceOrg,startTime-
string
sourceOrg
Optional

Optional case sensitive filtering field.

sourceOrg example
org1
string
startTimeAfter
Optional

If present, applies greater-than filtering by startTime.

startTimeAfter example
1499928548623
string
startTimeBefore
Optional

If present, applies less-than filtering by startTime.

startTimeBefore example
1499929548951
string
state
Optional

If present, applies equals filtering by state. Available values: [RUNNING, SUCCEEDED, FAILED]

state example
RUNNING
string
type
Optional

If present, applies equals filtering by workflowinfo.type.

type example
failover
string
user
Optional

If present, applies equals filtering by username. Available only to admins.

user example
org2@site2
Header Parameters
string
Accept
Optional

Accept

string
operationID
Optional

Operation ID for correlating logs across multiple services


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns QueryResultOfC4ApiTaskOfobject of type(s) application/vnd.vmware.h4-v3.5+json;charset=UTF-8
{
    "items": [
        {
            "endTime": 1499929558827,
            "error": {
                "args": [
                    "string"
                ],
                "code": "string",
                "msg": "string",
                "stacktrace": "string"
            },
            "id": "f61d60d2-698a-46dc-a266-88df27644956",
            "lastUpdated": 1499929558827,
            "progress": 100,
            "resultType": "string",
            "site": "site2",
            "startTime": 1499929548951,
            "state": "SUCCEEDED",
            "user": "root",
            "warnings": [],
            "workflowInfo": {
                "resourceId": "C4VAPP-ccbe771e-b685-46c7-8c7a-4ed36915d963",
                "resourceName": "my vapp 1",
                "resourceType": "vappReplication",
                "type": "sync"
            }
        }
    ],
    "limit": 100,
    "offset": 0,
    "total": 3
}
items
Optional

A list of tasks.

integer As int32 As int32
limit
Optional

Maximum number of items that this query could retrieve.

integer As int32 As int32
offset
Optional

How much items were skipped, before retrieving the actual items.

integer As int64 As int64
total
Optional

The total number of items.


400

Returned error codes include (but are not limited to):

  • BadUserInput
  • BadRequest
  • UnsupportedSortingField
Returns ApiError of type(s) application/vnd.vmware.h4-v3.5+json;charset=UTF-8
{
    "args": [
        "string"
    ],
    "code": "string",
    "msg": "string",
    "stacktrace": "string"
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.


401

Returned error codes include (but are not limited to):

  • NotAuthenticated
  • RemoteAuthenticationFailure
Returns ApiError of type(s) application/vnd.vmware.h4-v3.5+json;charset=UTF-8
{
    "args": [
        "string"
    ],
    "code": "string",
    "msg": "string",
    "stacktrace": "string"
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.


404

Returned error codes include (but are not limited to):

  • SiteNotFound
  • TaskNotFound
Returns ApiError of type(s) application/vnd.vmware.h4-v3.5+json;charset=UTF-8
{
    "args": [
        "string"
    ],
    "code": "string",
    "msg": "string",
    "stacktrace": "string"
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.


500

Returned error codes include (but are not limited to):

  • GeneralServerFailure
Returns ApiError of type(s) application/vnd.vmware.h4-v3.5+json;charset=UTF-8
{
    "args": [
        "string"
    ],
    "code": "string",
    "msg": "string",
    "stacktrace": "string"
}
array of string
args
Optional

Positional arguments.

string
code
Optional

Specific error code.

string
msg
Optional

Detailed error message.

string
stacktrace
Optional

Exception stacktrace.