Assign Anywhere API

Overview

The Assign Anywhere API allows Trella Health customers to manage their assignments within the Marketscape suite of products. Additionally, the Assign Anywhere API supports integrating with your webhook to support syncing assignments made in Marketscape with your products.

Usage Steps

  • Obtain an API key: To request an API key, please send an email to apisupport@trellahealth.com with your request details.

  • Once you receive confirmation of your API key, access the API at https://account-assignments.trellahealth.com. The API key needs to be set in the HTTP request header for all API calls as follows:

x-api-key=[your-secret-key]

API Interface

POST https://account-assignments.trellahealth.com/assign

 

AssignmentRequest: required: - "assignees" - "assigner" - "npis" - "portal" - "timestamp" - "type" type: "object" properties: assignees: type: "array" items: type: "string" assigner: type: "string" npis: type: "array" items: type: "string" portal: type: "string" timestamp: type: "string" type: type: "string" securitySchemes: api_key: type: "apiKey" name: "x-api-key" in: "header"

 

Example request body:

{ "assignees": ["assignee1@trellahealth.com", "assignee2@trellahealth.com"], "assigner":"assigner@trellahealth.com", "npis": ["1235470618", "1215574843"], "portal":"hha", "timestamp":"20220920010937", "type":"ADD" }