Unlink Account

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/unlink

Unlinks a partner account (identified by External Id) from its associated zipForm® account. The zipForm® account becomes available for linking to another partner account.

application/json

Body Required

  • SharedKey string Required
  • ExternalId string Required

Responses

  • 200

    Account unlinked successfully

  • 304

    Not Modified — External Id could not be removed

  • 401

    Unauthorized — partner not recognized or user not found

POST /auth/unlink
curl \
 --request POST 'https://api.pre.zipformplus.com/api/auth/unlink' \
 --header "Content-Type: application/json" \
 --data '{"SharedKey":"string","ExternalId":"string"}'
Request examples
{
  "SharedKey": "string",
  "ExternalId": "string"
}