# Buyer deactivation Notification that a buyer identity has been deactivated. Endpoint: POST buyerDeactivatedWatch Version: v1 Security: ## Header parameters: - `call-ref` (string) A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255 - `published-timestamp` (integer, required) The timestamp, expressed in Epoch timestamp using millisecond precision, when this event was published. - `signature` (string, required) The signature to verify the authenticity of this request. This is the base64 hash (HmacSHA256) of the published-timestamp using your API key. - `signature-v2` (string, required) The signature to verify the authenticity of this request. This is the base64 hash (HmacSHA256) of the call-ref header, the request body, and the published-timestamp header, all concatenated without spaces, and signed using your API key. ## Request fields (application/json): - `type` (string) Enum: "buyerDeactivatedWatch" - `payload` (object) - `payload.actionDoneBy` (string, required) Enum: "UNDEFINED", "ADMIN", "EMBEDDER" - `payload.buyerId` (string, required) - `payload.reasonCode` (string, required) Enum: "UNDEFINED_REASON", "ACCOUNT_REVIEW", "ACCOUNT_SECURITY", "TEMPORARY", "ACCOUNT_CLOSURE", "ACCOUNT_ABANDONED" - `payload.supportedCurrencies` (array, required) - `payload.supportedCurrencies.currency` (string, required) The currency expressed in ISO-4217 code. Enum: "GBP", "EUR" - `payload.supportedCurrencies.status` (string, required) The status of the currency, which can include the following values * PENDING_KYB_APPROVAL: The buyer’s KYB process is pending approval. * STEPUP_LOGIN_REQUIRED: The buyer needs to perform a stepped-up login for higher authentication. * PENDING_CREATION: Awaiting the setup completion of the currency * ACTIVE: The ZBA has been successfully created and is ready for use. * UNAVAILABLE: The currency is unavailable and cannot be used. Enum: "PENDING_KYB_APPROVAL", "STEPUP_LOGIN_REQUIRED", "PENDING_CREATION", "ACTIVE", "UNAVAILABLE" ## Response 200 fields