> ## Documentation Index
> Fetch the complete documentation index at: https://developer.embedly.ng/llms.txt
> Use this file to discover all available pages before exploring further.

# Deactivate a Split Beneficiary

> Activates a split beneficiary for the authenticated organization. Organization API key required.

<ParamField body="beneficiaryId" type="string" required>
  **Example:** `02600494-1a3c-11f0-a818-6045bd97b81d`
</ParamField>

<ParamField body="organizationId" type="string" required>
  **Example:** `02600494-1a3c-11f0-a818-6045bd97b81d`
</ParamField>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "statusCode": 200,
    "message": "Beneficiary deactivated successfully",
    "data": null
  }
  ```

  ```json 400 Bad Request theme={null}
  {
    "statusCode": 400,
    "message": "Validation failed",
    "errors": [
      "The request field is required.",
      "The JSON value could not be converted to System.Guid. Path: $.organizationId | LineNumber: 1 | BytePositionInLine: 60."
    ],
    "data": null
  }
  ```

  ```json 401 Unauthorized theme={null}
  {
    "code": "401",
    "success": false,
    "message": "x-api-key is missing in the header",
    "data": null
  }
  ```

  ```json 403 Forbidden theme={null}
  {
    "statusCode": 403,
    "message": "Access denied. The API key provided is for another organization. You can only access your organization's wallets.",
    "data": null
  }
  ```

  ```json 500 Internal Server Error theme={null}
  {
    "code": "500",
    "success": false,
    "message": "An unexpected error occurred",
    "data": null
  }
  ```
</ResponseExample>
