Passer au contenu principal
GET
/
events
NodeJs
const { FedaPay, Event } = require('fedapay');
/* Replace YOUR_SECRETE_API_KEY with your real API key */
FedaPay.setApiKey("YOUR_SECRETE_API_KEY");
/* Specify whether you want to run your query in test or live mode */
FedaPay.setEnvironment('sandbox'); //or setEnvironment('live');
/* Show events */
const event = await Event.all( params = {}, headers = {} );
\FedaPay\Fedapay::setApiKey(MY_API_KEY);
/**
* @var \FedaPay\FedaPayObject
*/
$response = \FedaPay\Event::all();
$events = $response->events;
$meta = $response->meta;
require 'fedapay';
# configure FedaPay library
FedaPay.api_key = '' # Your secret api key
FedaPay.environment = '' # sandbox or live
events = FedaPay::Event.list;
curl --request GET \
--url https://sandbox-api.fedapay.com/v1/events \
--header 'Authorization: Bearer <token>'
import requests

url = "https://sandbox-api.fedapay.com/v1/events"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://sandbox-api.fedapay.com/v1/events"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://sandbox-api.fedapay.com/v1/events")
.header("Authorization", "Bearer <token>")
.asString();
[
  {
    "id": 123,
    "type": "<string>",
    "entity": {},
    "object_id": 123,
    "account_id": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "deleted_at": "2023-11-07T05:31:56Z"
  }
]

Autorisations

Authorization
string
header
requis

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Réponse

List of events

id
integer

Event ID.

type
string

Event type

entity
object

Event entity

object_id
integer

Object ID associated with the event

account_id
integer

Account ID associated with the event

created_at
string<date-time>

Date and time of event creation.

updated_at
string<date-time>

Date and time of last event update.

deleted_at
string<date-time>

Date and time of customer deletion (if applicable).