Skip to main content
GET
/
organizations
/
{orgId}
/
lookuptables
/
{lookupTableId}
/
revisions
/
{lookupTableRevisionId}
/
data
/
jobs
List the LookupTableRevisionData Jobs
curl --request GET \
  --url https://api.m3ter.com/organizations/{orgId}/lookuptables/{lookupTableId}/revisions/{lookupTableRevisionId}/data/jobs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "version": 123,
      "fileName": "<string>",
      "lookupTableId": "<string>",
      "lookupTableRevisionId": "<string>",
      "destinationLookupTableRevisionId": "<string>",
      "jobDate": "<string>",
      "type": "COPY",
      "status": "PENDING",
      "failureReason": "<string>",
      "downloadUrl": "<string>",
      "downloadUrlExpiry": "<string>"
    }
  ],
  "nextToken": "<string>"
}

Authorizations

Authorization
string
header
required

m3ter supports machine to machine authentication using the clientCredentials OAuth2 flow.

The authorizationCode flow controls access for human users via the m3ter Console application.

Path Parameters

orgId
string
required

UUID of the Organization. The Organization represents your company as a direct customer of the m3ter service.

lookupTableId
string
required

UUID of the Lookup Table.

lookupTableRevisionId
string
required

UUID of the Lookup Table Revision.

Query Parameters

pageSize
integer<int32>

The number of Lookup Table Revision Data Job Responses to retrieve per page.

Required range: 1 <= x <= 100
nextToken
string

The nextToken for multi page retrievals

Response

Returns a List of LookupTableRevisionDataJob Responses

data
object[]
nextToken
string