Authenticates the partner application and a zipForm® user using username/password or user GUID, and returns a Context Id for use in subsequent requests.
Optionally supply LinkExternalId to link the user's account to a partner external ID.
Returns 409 if account linking fails.
POST
/auth/user
curl \
--request POST 'https://ws.zipformplus.com/api/auth/user' \
--header "Content-Type: application/json" \
--data '{"SharedKey":"string","UserName":"string","Password":"string","UserId":"string","LinkExternalId":"string"}'
Request examples
{
"SharedKey": "string",
"UserName": "string",
"Password": "string",
"UserId": "string",
"LinkExternalId": "string"
}
Response examples (200)
{
"contextId": "string"
}