Choozle · Schema

AuthorizationRequest

Request body for the Choozle /api/authorization endpoint.

Digital AdvertisingProgrammatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAudience TargetingDisplay AdvertisingConnected TVCTVVideo AdvertisingNative AdvertisingDOOHReportingReal-Time BiddingRTB

Properties

Name Type Description
email string The registered Choozle account email address.
timestamp integer Unix epoch timestamp in seconds used in signature computation.
signature string HMAC-SHA256 hex digest computed over email and timestamp using the API secret key.
View JSON Schema on GitHub

JSON Schema

authorization-request.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/choozle/main/json-schema/authorization-request.json",
  "title": "AuthorizationRequest",
  "description": "Request body for the Choozle /api/authorization endpoint.",
  "type": "object",
  "required": ["email", "timestamp", "signature"],
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "The registered Choozle account email address."
    },
    "timestamp": {
      "type": "integer",
      "description": "Unix epoch timestamp in seconds used in signature computation."
    },
    "signature": {
      "type": "string",
      "description": "HMAC-SHA256 hex digest computed over email and timestamp using the API secret key."
    }
  }
}