WISdom Connect

Prev Next

WISdom Connect enables secure API access to your account data using an API key, which can be generated from the Integration screen.

The full API specification is available at https://api.fortifiedwisdom.com.

All requests to the API must include a valid API key for authentication. The API key should be sent in the HTTP Authorization header using the X-API-KEY scheme.

Header Name Description Example Value
Authorization Contains the API key credential X-API-KEY your_api_secret_here

HTTP Request Example

GET /v1/accounts/123/inventory/servers HTTP/1.1
Host: api.fortifiedwisdom.com
Authorization: X-API-KEY 12345abcdef67890
Content-Type: application/json

Curl Example

curl -X GET "https://api.fortifiedwisdom.com/v1/accounts/123/inventory/servers" \
  -H "Authorization: X-API-KEY 12345abcdef67890" \
  -H "Content-Type: application/json"

Important Notes

  • The header name must be exactly Authorization.
  • The value must begin with X-API-KEY, followed by a single space, and then the API secret.
  • Do not include quotation marks or additional spaces.
  • If the header is missing or improperly formatted, the server will return an HTTP 401 Unauthorized error.