List Export Jobs

List all export jobs

Request
Security:
bearerAuth
query Parameters
pageToken
string

A page token, received from a previous call. Provide this token to retrieve the subsequent page.

To retrieve the first page, supply an empty page token.

When paginating, other parameters provided to the call must match the call that provided the page token.

Note: If a nextPageToken is returned by the endpoint, there may be more results regardless of whether or not the exportJobs array is empty. Users must call this API with the returned nextPageToken until an empty nextPageToken is returned if they want to ensure that they have received all results.

Example: pageToken=ayI9of.ea18tjsa_a14.eypIjkL10

pageSize
integer <int32>

The maximum size of the page results to return. Defaults to 50. Fewer results may be returned, but there may still be more on the next page.

Example: pageSize=50

Responses
200

A successful response.

400

Returned when bad request is received.

401

Returned when a request is made without a valid API key

403

Returned when the given user does not have permissions on the requested resource

404

Returned when the given resource is not found

429

Returned when the given user has reached their API rate limits.

500

Returned when there is an unrecoverable error in the API. If you continue to receive this error, please contact support and include your terminus-request-id.

503

Returned when the service is currently unavailable.

get/exports/v1/exportJobs
Request samples
curl -i -X GET \
'https://api.terminusplatform.com/exports/v1/exportJobs?pageToken=SOME_NEXT_PAGE_TOKEN_HERE&pageSize=20' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response samples
application/json
{
  • "exportJobs": [
    • {
      • "id": "TACTIC_PERFORMANCE",
      • "type": "TACTIC_PERFORMANCE",
      • "schedule": "0 0 1 * *"
      }
    ],
  • "nextPageToken": "abc123fe"
}