Altalis Support

API Methods and Examples

The Basics

Mon, Feb 11, 2019 at 3:07 PM

The Altalis Rest API consists of four methods. Each of the methods has a root URL of https://api.altalis.com/altalis/acquisition_api/v1/ The Basic Order of Operations GET - Subscriptions : This is your starting point, run this method whenever you want to get a full listing of all your subs...

Read More

GET - Subscriptions

Mon, Feb 11, 2019 at 3:07 PM

Description: Retrieves a list of all subscriptions configured for your API Token. It returns an array of subscriptions that you can get updates for. URL: https://api.altalis.com/altalis/acquisition_api/v1/subscriptions Request Method: GET Response Content Type:  application/json Response dat...

Read More

POST - Subscription Updates

Tue, Mar 23, 2021 at 3:37 PM

Description: Calls the Rest API to begin processing the update package for a specified set of products within a subscription. There are three parameters that need to be specified in the URL. {subscriptionId} needs to be set to the ID of the subscription you are wanting updates for. {changesSince...

Read More

GET - Package Status

Mon, Feb 11, 2019 at 3:06 PM

Description: Retrieves the status of the package that is currently being processed. As soon as the package is marked as Finished it is ready to be downloaded using the download package method. URL: https://api.altalis.com/altalis/acquisition_api/v1/packageStatus/{packageId} Request Method: GET...

Read More

GET - Package

Mon, Feb 11, 2019 at 3:08 PM

Description: Retrieves the final ZIP package of what you have requested. URL: https://api.altalis.com/altalis/acquisition_api/v1/package/{packageId} Request Method: GET Response Content Type:  application/zip Response data: Response is the zip file content directly. This one can accept Range...

Read More

PowerShell Example

Tue, Mar 23, 2021 at 3:39 PM

This sample PowerShell script is an all in one script that will download all the subscription updates for all of your company subscriptions onto your machine. The following parameters will need to be set for it to work for you. You need to specify your API_TOKEN in order to gain permission t...

Read More

FME Example

Wed, Dec 21, 2022 at 4:38 PM

In this example there are two FME workspaces. These examples are intended to get you started you may need to make modification to suit your needs. The first one AltalisAPI_Get.fmw can be used for any of the GET operations that are available in the API. The Second one AltalisAPI_PostUpdates.f...

Read More

Python Example

Mon, Feb 11, 2019 at 4:52 PM

This python example contains two scripts, one that will tell you all the subscriptions and subscription products that you have, and one that will download the updates for one subscription. You need to specify your API key in both scripts in order for them to access your subscription infor...

Read More