Retrieve project template list

Get project templates

GET https://ris.rightsline.com/v4/project-templates

This endpoint allows you to retrieve template data for projects.

Headers

NameTypeDescription

x-api-key

string

Your company's API key.

Authentication

string

Authentication token.

{
    "templates": [
        {
            "templateId": 2,
            "templateName": "Available Material",
            "processId": 11,
            "processName": "Submission In Workflow"
        },
        {
            "templateId": 4,
            "templateName": "Sample",
            "processId": 15,
            "processName": "Sample Workflow"
        },
        {
            "templateId": 1,
            "templateName": "Outgoing Submission",
            "processId": 9,
            "processName": "Submission Out Workflow"
        },
        {
            "templateId": 5,
            "templateName": "Incoming Submission",
            "processId": 42,
            "processName": "Submission Workflow Demo"
        },
        {
            "templateId": 7,
            "templateName": "Marketing Submission",
            "processId": 42,
            "processName": "Submission Workflow Demo"
        },
        {
            "templateId": 8,
            "templateName": "Acquisition Opportunity",
            "processId": 24,
            "processName": "Project Workflow"
        }
    ]
}

Last updated