Generate Access Endpoint

If a file is downloadable, generates a one-time use Url that can be used to download the appended file content. This can be any file submitted to Accurate Append for your account, not just lists using the Submit File endpoint.

GET Management/V1/Queue/GenerateAccess/[JobKey]

Url Parameters

ParameterDescription
JobKeyThe unique identifier of the submitted file for appending. If submitted via SFTP or via website upload, this is automatically generated for you. If submitted via the Submit File endpoint, this is the value supplied in the "request_id" parameter. This value is also available as part of the returned data from the View Queue endpoint.

Authentication
Authentication to this endpoint is performed by supplying your api key value in the "Authorization" HTTP header of the request.

Response (Success) HTTP 200

{
  "AccessUri": "https://FULLY QUALIFED UNIQUE URL TO ACCESS YOUR APPENDED FILE",
  "Expiration": "2024-10-25T23:43:42.580825Z"
}

Understanding the Access payload

ElementDescription
AccessUriThe unique fully qualified path to use to download your indicated file.
ExpirationThe date and time (in ISO 8601 format) until the AccessUri becomes invalid (Typically 10 minutes). After this expiration another access url can be generated.

📘

Important

It is your responsibility to properly secure, store, and use the generated access uri
which should not be exposed to unauthorized parties. Any party with an unexpired value
can use it to download your appended file.

Responses (Failure)

HTTP Status CodeDescription
403 UnauthorizedYour api key was not found or you are not a current subscriber.
404 NotFoundYour indicated file could not be found for your account or is no longer available.
500 ServerErrorWe encountered and error while processing your request. Please try again.

Copyright (c) 2015-2024, Accurate Append Corp
All rights reserved.