# Get a webhook each time you take a ticket order | Ticket Fairy -oppaat

1. [Ticket Fairy](https://www.ticketfairy.com/)
2. [Oppaat](https://www.ticketfairy.com/fi/guides)
3. Get a webhook each time you take a ticket order

Kehittäjät ja API

# Get a webhook each time you take a ticket order

A webhook posts every order to an address you own, seconds after the buyer pays. Agencies and promoters with their own CRM, warehouse or fulfilment system get each sale as it happens, rather than waiting for a nightly export.

Have Ticket Fairy send each new order to an address you own, seconds after the buyer pays, so your own systems get the sale without asking for it on a timer.

Kenelle:  Sending each ticket sale to your own systems as it happens

Kestää:  8 minuuttia

- [Generate the webhook key](#step-1)
- [Point a webhook at your own address](#step-2)
- [Choose what sets it off](#step-3)
- [When to put a webhook on the brand rather than the event](#step-4)
- [Attach it where it should listen](#step-5)
- [Sell a ticket and watch it arrive](#step-6)

## Ennen aloitusta

- You have an address that answers a POST and returns quickly. Use HTTPS for a real endpoint, because each request carries order and buyer details.
- You have a personal access token for the command line. Creating one has its own guide.
- You know which events should feed it: one event, everything under a brand, or everything on a tour.

1. ## Generate the webhook key

   Open your account settings and select **Generate Webhook API Key** under **Webhook API Key**.

   **Huomautus:** Platforms such as Zapier ask for this key when you connect them. A webhook you create yourself calls your address directly and needs nothing from this card.
          ![Ticket Fairy Webhook API Key card showing the key with a control to copy it and one to regenerate it](https://www.ticketfairy.com/embeds/posters/marketing-developer-access--api-keys.png)    The webhook key, once it has been generated.
2. ## Point a webhook at your own address

   Run "ticketfairy webhook create --url https://example.com/hooks/tickets --on order" against the brand you are working on.

   **Huomautus:** Each order is posted to that address as JSON. Answer with a success code quickly and do the slow work afterwards, so a busy on-sale never waits on you.
3. ## Choose what sets it off

   Pass the one thing you want to hear about in "--on": "order" for orders, or "new\_event", "update\_event", "publish\_event" and "find\_event" for the event itself.

   **Huomautus:** One webhook carries one notification, so a system that wants orders and publications needs two of them.

## When to put a webhook on the brand rather than the event

Attach a webhook to one event when only that event should feed your system, and to the brand when every event should. A whole tour has its own attachment. The four event notifications are the exception that decides it for you: "new\_event", "update\_event", "publish\_event" and "find\_event" reach brand and tour webhooks only, and never one attached to a single event, so a system that wants to hear about publications needs its webhook on the brand.

4. ## Attach it where it should listen

   Pass "--event", "--brand" or "--tour" on the command that creates it.

   **Huomautus:** The command falls back to the brand you are working on when none of the three is given.
5. ## Sell a ticket and watch it arrive

   Buy one ticket yourself and check the request reaches your address.

   **Huomautus:** Delivery happens in the background rather than inside the checkout, so allow a few seconds. Refund your own order afterwards.

## Kokeile näitä vaiheita omassa tapahtumassasi

Luo ilmainen tili, rakenna tapahtumasi ja seuraa yllä olevia vaiheita omassa hallintapaneelissasi. Se vie muutaman minuutin, eikä sinun tarvitse varata myyntipuhelua.

    Sähköpostiosoitteesi    [Luo ilmainen tili](https://manage.ticketfairy.com/welcome) [Varaa esittely](https://www.ticketfairy.com/fi/event-ticketing/book-a-demo)

Ei käyttöönottomaksuja. Ei pakollista kuukausimaksua. Luottokorttia ei tarvita.

## Tai anna sen hoitua puolestasi

Fai can open the page holding the webhook key. The webhooks themselves are created from the command line, and the steps below show the commands.

### Hallintapaneelissasi, Fain kanssa

Open my account settings so I can get my webhook key

### Omasta avustajastasi, MCP:n kautta

Yhdistä avustajasi [MCP-palvelimeemme](https://www.ticketfairy.com/mcp-server) ja pyydä sitä:

Pidä `--read-only` MCP-määrityksessäsi. Tämä tehtävä vain lukee tietoja, joten avustajasi ei tarvitse muutoksia tekeviä työkaluja.

Pick the brand \<BRAND NAME\> and show its events

## Päätteeltä

Asenna CLI osoitteesta [CLI-sivultamme](https://www.ticketfairy.com/cli), kirjaudu komennolla `ticketfairy auth login` ja valitse brändi, jonka parissa työskentelet, komennolla `ticketfairy brand use <BRAND_ID>`. `ticketfairy brand list` ja `ticketfairy event list` näyttävät muiden komentojen käyttämät tunnisteet.

Create the webhook, then read back what is listening.

### Call your address every time an order is placed

ticketfairy webhook create --url https://example.com/hooks/tickets --on order

### Show the webhooks on the active brand

ticketfairy webhook list

## Anna Fain hoitaa se puolestasi

Fai toimii Ticket Fairy -hallintapaneelissasi. Luo tili, avaa Fai ja liitä yllä oleva kehote.

   [Luo ilmainen tili](https://manage.ticketfairy.com/welcome) [Varaa esittely](https://www.ticketfairy.com/fi/event-ticketing/book-a-demo)

Ei käyttöönottomaksuja. Ei pakollista kuukausimaksua. Luottokorttia ei tarvita.

## Take one out of service

1. ### Switch it off while you work on your end

   Run "ticketfairy webhook update \<ID\> --disable", taking the id from "ticketfairy webhook list".

   **Huomautus:** A disabled webhook keeps its settings and stops receiving. Bring it back with the same command and "--enable".
2. ### Remove one you have finished with

   Run "ticketfairy webhook delete \<ID\>" once nothing needs it.

   **Huomautus:** Deleting is permanent, so disable first when you only want a pause.

Fai can open the dashboard for you. Webhooks are read and changed from the command line today.

### Hallintapaneelissasi, Fain kanssa

Open my account settings

### Omasta avustajastasi, MCP:n kautta

Pidä `--read-only` MCP-määrityksessäsi. Tämä tehtävä vain lukee tietoja, joten avustajasi ei tarvitse muutoksia tekeviä työkaluja.

Pick the brand \<BRAND NAME\> and show its events

### Päätteeltä

Read the webhooks, then switch one off or remove it.

#### Show the webhooks on the active brand

ticketfairy webhook list

#### Stop a webhook receiving without deleting it

ticketfairy webhook update \<WEBHOOK\_ID\> --disable

#### Remove a webhook permanently

ticketfairy webhook delete \<WEBHOOK\_ID\>

## Kysymyksiä joita sinulla voi olla

Why did nothing arrive when my event went live?:  Check what the webhook is attached to. The event notifications reach brand and tour webhooks only, so one attached to a single event hears about orders alone.

What happens when my address is down?:  That delivery fails and the next one is tried as normal. Answer 410 Gone and we take the webhook off the list, which is the clean way to unsubscribe from your end.

Can I check a request really came from Ticket Fairy?:  Yes. Ask Ticket Fairy support to add a signing secret to your event, and every request then carries an X-Signature header your endpoint recomputes with the same secret.

Will the same order reach me more than once?:  Yes. The whole order is posted again every time it changes, so a refund, a cancellation, a resale or a transfer each send it. Match on the order number and apply what you receive, rather than counting every delivery as a new sale.

Can I test against a local address?:  A plain http address on your own machine is accepted, so a tunnel is a convenience rather than a requirement. Every request carries order and buyer details, so keep http for testing and give the live system an HTTPS address.

## Jäikö vielä kysyttävää?

Varaa esittely, niin vastaamme siihen puhelussa sinun tapahtumatyyppisi mukaan. Tai luo tili ja katso itse.

   [Varaa esittely](https://www.ticketfairy.com/fi/event-ticketing/book-a-demo) [Luo ilmainen tili](https://manage.ticketfairy.com/welcome)

Ei käyttöönottomaksuja. Ei pakollista kuukausimaksua. Luottokorttia ei tarvita.

## Aiheeseen liittyvät oppaat

- [Lisää tapoja käyttää Ticket Fairyä](https://www.ticketfairy.com/fi/event-ticketing/features)
- [Luo API-avain, jotta omat työkalusi voivat lukea lipunmyyntiäsi](https://www.ticketfairy.com/fi/guides/create-an-api-key-for-your-own-app)
- [Can you sell tickets directly from your own website?](https://www.ticketfairy.com/fi/guides/sell-tickets-on-your-own-website)
- [Synkronoi lipunostajat MailChimpiin](https://www.ticketfairy.com/fi/guides/sync-buyers-to-mailchimp)
- [Kaikki Ticket Fairy -oppaat](https://www.ticketfairy.com/fi/guides)

## Tee tämä omassa tapahtumassasi

Luo tili, rakenna tapahtumasi ja seuraa vaiheita omassa hallintapaneelissasi. Sinun ei tarvitse varata myyntipuhelua.

  [Luo ilmainen tili](https://manage.ticketfairy.com/welcome) [Varaa esittely](https://www.ticketfairy.com/fi/event-ticketing/book-a-demo)

## Myy lippuja Ticket Fairyn kanssa

Kaikki näissä oppaissa esitelty on hallintapaneelissasi rekisteröitymispäivästä alkaen.

- Rakenna tapahtumasi minuuteissa
- Ilmaiset tapahtumat ovat ilmaisia
- Fai, apuohjaajasi, on mukana valmiina

 [Luo ilmainen tili](https://manage.ticketfairy.com/welcome)

Ei käyttöönottomaksuja. Ei pakollista kuukausimaksua. Luottokorttia ei tarvita.

## Katso se puhelussa

Varaa esittely, niin näytämme, miten Ticket Fairy hoitaa sinun tapahtumatyyppisi.

 [Varaa esittely](https://www.ticketfairy.com/fi/event-ticketing/book-a-demo) [Lisää tapoja käyttää Ticket Fairyä](https://www.ticketfairy.com/fi/event-ticketing/features)

### Vinkkejä lippujen myynnin kasvattamiseen

Käytännön neuvoja järjestäjiltä, joiden liput myydään loppuun, sekä jokainen uusi opas heti sen ilmestyttyä.

Kunnioitamme yksityisyyttäsi. Voit peruuttaa milloin tahansa.
