This document will show you how to use Signifyd's REST API to authenticate, make requests, and retrieve data.
Download OpenAPI specification:Download
All responses to and from the API will be in JSON. All requests should include a Content-Type: application/json
header
If you are a Signifyd customer and would like to access Enterprise API documentation, please log in here and navigate to the Resource Center within Developer Tools.
Versioning
We only update the version of our API when a non-backward-compatible change is made.
Signifyd considers the following changes to be backward-compatible:
- Adding new optional request parameter(s) to an existing API endpoint.
- Adding a new value to an enum field.
- Adding new fields to existing API responses.
- Changing the order of fields in an existing API response.
- Adding a brand new API resource.
- Adding a new webhook event. Your integration should handle unfamiliar webhook events gracefully.
- Changing the length of UUIDs (though we don't change lengths that often!).
- Changing the format of error messages, and other human-readable strings.
Response Codes
We use conventional HTTP response codes to indicate the success or failure of an API request. In general, codes in the 2xx range indicate success, codes in the 4xx range indicate an error that resulted from the provided information (e.g. a required parameter was missing, invalid syntax, etc.), and codes in the 5xx range indicate an error with Signifyd's servers.
Code | Description |
---|---|
200 | Success - Request completed. |
201 | Success - New resource created. |
202 | Success - The request has been accepted, but not yet processed. |
204 | Success - No content to return. |
400 | Bad Request - The request could not be parsed, generally due to bad syntax. |
401 | Unauthorized - The request could not be authenticated due to missing or invalid credentials. |
403 | Forbidden - You do not have permission to access to the resource. |
404 | Not Found - The resource doesn't exist. |
409 | Conflict - The with state of the resource on server. Can occur with (too rapid) PUT requests. |
429 | The request was not accepted because the application has exceeded the rate limit. |
500 | Internal Server Error - An internal error occurred in Signifyd. |
503 | Service Unavailable - The server is currently unavailable. Check the status page for reported outages. |
504 | Gateway Timeout - The request could not complete in time. |
Dates
Our API uses the ISO8601 date format for complete date plus hours, minutes, seconds, and timezone offset.
yyyy-MM-dd'T'HH:mm:ssZ
For UTC: 2015-11-03T13:21:58+00:00
For PST: 2015-11-03T13:21:58-08:00