Skip to main content
GET
/
organizations
/
{orgId}
/
lookuptables
/
{lookupTableId}
/
revisions
/
{lookupTableRevisionId}
/
data
/
jobs
/
{id}
Get LookupTableRevisionData Job Response.
curl --request GET \
  --url https://api.m3ter.com/organizations/{orgId}/lookuptables/{lookupTableId}/revisions/{lookupTableRevisionId}/data/jobs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "version": 123,
  "fileName": "<string>",
  "lookupTableId": "<string>",
  "lookupTableRevisionId": "<string>",
  "destinationLookupTableRevisionId": "<string>",
  "jobDate": "<string>",
  "type": "COPY",
  "status": "PENDING",
  "failureReason": "<string>",
  "downloadUrl": "<string>",
  "downloadUrlExpiry": "<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.

id
string
required

UUID of the Lookup Table Revision Data job.

Response

Returns the LookupTableRevisionDataJob Response

Response containing the LookupTableRevisionData job details

id
string

UUID of the Lookup Table Revision Data job.

version
integer<int64>

Version of the Lookup Table Revision Data job.

fileName
string

The file name for a Lookup Table Revision Data UPLOAD or DOWNLOAD job.

lookupTableId
string

UUID of the Lookup Table.

lookupTableRevisionId
string

UUID of the Lookup Table Revision.

destinationLookupTableRevisionId
string

UUID of the destination Lookup Table Revision if the Lookup Table Revision Data job is a COPY job.

jobDate
string

The date when the Lookup Table Revision Data job was created.

type
enum<string>
Available options:
COPY,
UPLOAD,
DOWNLOAD,
ARCHIVE
status
enum<string>
Available options:
PENDING,
FAILED,
SUCCEEDED
failureReason
string

The failure reason if the Lookup Table Revision Data job failed.

downloadUrl
string

The download Url if the Lookup Table Revision Data job is a DOWNLOAD job.

downloadUrlExpiry
string

The download Url expiry if the Lookup Table Revision Data job is a DOWNLOAD job.