# Register Order Webhook

{% hint style="info" %}
Note that the registered url should be a POST route. Json body will be sent to this route and will contain <mark style="color:blue;">**orderNumber**</mark> and <mark style="color:blue;">**orderStatus**</mark> as request body.
{% endhint %}

## Register.&#x20;

<mark style="color:green;">`POST`</mark> `/webhooks/store`

#### Headers

| Name                                            | Type            | Description |
| ----------------------------------------------- | --------------- | ----------- |
| secret-key<mark style="color:red;">\*</mark>    | user secret key |             |
| Authorization<mark style="color:red;">\*</mark> | Token           |             |

{% tabs %}
{% tab title="200 Success" %}

```json
{
    "status": "Success",
    "description": "Request successful",
    "data": {
        "webhook": "https://example.com",
        "webhooks": [
            {
                "url": "https://example.com",
                "type": "App\\Models\\Order",
                "is_active": 1
            }
        ]
    }
}
```

{% endtab %}

{% tab title="401 Unauthorized" %}

```json
{
    "status": "Error",
    "description": "Organization Secret Key is Required"
}
```

{% endtab %}

{% tab title="422 Validation Error" %}

```json
{
    "status": "Error",
    "description": "The webhook field is required."
}
```

{% endtab %}
{% endtabs %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apisandbox.fezdelivery.co/v1/webhooks/store',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
    "webhook":"https://example.com",
}',
  CURLOPT_HTTPHEADER => array(
    'secret-key: {{Your Secret Key}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://fez-delivery-co.gitbook.io/fezcorporate-api-docs/api-endpoints/webhook/register-order-webhook.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
