End authentication session
documentedEnd the current authentication session.
DELETE /authAuthenticationno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
Note: The ServiceTrade API docs show that DELETE /auth closes an authenticated session. The base URL for API requests is https://api.servicetrade.com/api, so the full endpoint is https://api.servicetrade.com/api/auth. Authentication is maintained via a cookie (PHPSESSID) that should be sent with the request to terminate the session. See the Authentication section of the ServiceTrade API docs for DELETE /auth behavior (204 on success, 404 if no active session). ([api.servicetrade.com](https://api.servicetrade.com/api/docs))
npx -y keychains@latest curl "https://api.servicetrade.com/api/auth" \
-X DELETE \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Cookie: PHPSESSID={{SERVICETRADE_SESSION_COOKIE}}"