---
title: "API_Webhooks_Copy"
slug: "api-webhooks-copy"
updated: 2025-08-18T09:38:59Z
published: 2025-08-18T09:38:59Z
canonical: "help.quickbase.com/api-webhooks-copy"
---

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

# API_Webhooks_Copy

**Don't forget to check out our**[**JSON RESTful APIs**](https://developer.quickbase.com/)**, they can help you utilize and extend Quickbase with ease.**

## Overview

Use API_Webhooks_Copy to make a duplicate of an existing webhook.

## Request Parameters

| Parameter | Value | Required? |
| --- | --- | --- |
| actionID | ID of the action to copy | yes |

## Response values

| Element Name | Value |
| --- | --- |
| action | The originating request, for example, API_Webhooks_Copy |
| errcode | Identifies the error code, if any. (See the [Error Codes appendix](/v1/docs/error-codes) for a list of possible error codes.) 0 (zero) indicates that no error was encountered. |
| errtext | Text that explains the error code. "No error" indicates that no error was encountered. |
| actionID | actionID of the webhook |
| success | true or false |

## Sample XML Request

```xml
POST https://target_domain/db/target_dbid?
Content-Type: application/xml
Content-Length:
QUICKBASE-ACTION: API_Webhooks_Copy
<qdbapi>
<usertoken>buacrj_uyp_iag2s56b7t8opp5edsvt</usertoken>
<actionId>15</actionId>
</qdbapi>
```

## URL alternative

```plaintext
https://myApp.quickbase.com/db/bmdihpya6?a=API_Webhooks_Copy&actionID=1
```

## Sample response

```xml
<?xml version="1.0" ?>
<qdbapi>
<action>API_Webhooks_Copy</action>
<errcode>0</errcode>
<errtext>No error</errtext>
<actionId>16</actionId>
</qdbapi>
```
