A single user cannot make API requests more than 20 times per second and 1,000 per minute. All users on a Connect subscription cannot make more than 200 requests per second and 10,000 per minute.
The base URL is the same regardless of the specific API request that you make. To determine
what your base URL should be, copy the URL that you use to log into Minitab Connect
and add /api/odata_v4/
. For example, if you use
https://connect.minitab.com to access Minitab Connect, then the base URL for all
your OData API requests is:
https://connect.minitab.com/api/odata_v4/
.
Informs the system that the request should be processed with the same permissions as the specified user. Authentication is represented by an API Key. An API Key is a unique string of characters that gives access to a feature in the tool. To create an API key, open User Menu in the top right and select Account Settings. For more information, go to Generate an API token.
There are three different authentication methods.
https://connect.minitab.com/api/odata_v4/?apikey=[apikey]
,
where you replace 'apikey' with the actual API key.https://connect.minitab.com/api/odata_v4/
Connect remotes all non A-Z, a-z, 0-9, -(hyphen), and _(underscore) characters from entities (records), entity sets (tables and views), and properties. Connect appends "_t" for tables and "_v" for views plus an ID to entity and entitty set names to guarantee a unique name. For example:
https://connect.minitab.com/api/odata_v4/$metadata
https://connect.minitab.com/api/odata_v4/[EntitySet]
https://connect.minitab.com/api/odata_v4/[EntitySet]([sys_id])/
Returns an entity (one record), identified by ‘sys_id’, from the specified ‘EntitySet’.