Epics API
Introduction
The Mendix Epics API allows you to retrieve, create, and update stories as well as get all the statuses that can be possibly assigned to stories.
Authentication
Authentication for the Epics API uses a personal access token (PAT).
Generating a PAT
For details on how to generate a PAT, see the Personal Access Tokens section in User Settings.
Select at least the following as Epics scopes:
mx:epics:read– to performGEToperationsmx:epics:write– to perform all operations (GET,POST,PUT, andDELETE)
Store the generated value {GENERATED_PAT} somewhere safe so you can use it to authorize your Mendix Epics API calls.
Using the PAT
Each request must contain an Authorization header with the value MxToken {GENERATED_PAT}. Here is an example:
GET /projects/d92064a5-b1fd-4be4-97db-53fc90201d1c/epics HTTP/1.1
Authorization: MxToken 7LJE…vkTo authenticate calls when using the Open API specification below, click Authorize and use the value MxToken {GENERATED_PAT}.