Authenticate Using External Id

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.lwolf.com/doc/zipform-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "ZipForm API MCP server": {
    "url": "https://apidocs.lwolf.com/doc/zipform-api/mcp"
  }
}

Close
POST /auth/external-id

Authenticates using the partner's External Id and Shared Key, and returns a Context Id.

application/json

Body Required

  • SharedKey string Required
  • ExternalId string Required

Responses

  • 200 application/json

    Authentication successful

    Hide response attribute Show response attribute object
    • contextId string

      Session identifier to be used in subsequent requests

  • 401

    Unauthorized

POST /auth/external-id
curl \
 --request POST 'https://api.pre.zipformplus.com/api/auth/external-id' \
 --header "Content-Type: application/json" \
 --data '{"SharedKey":"string","ExternalId":"string"}'
Request examples
{
  "SharedKey": "string",
  "ExternalId": "string"
}
Response examples (200)
{
  "contextId": "string"
}