GET
/
events
/
{event_id}
curl --request GET \
  --url https://api.useswift.dev/events/{event_id} \
  --header 'Authorization: Bearer <token>'
{
  "associated_object_id": "account_in71c4amph0vgo2qllky",
  "associated_object_type": "account",
  "created_at": "2020-01-31T23:59:59Z",
  "event_category": "account.created",
  "id": "event_001dzz0r20rzr4zrhrr1364hy80",
  "type": "event"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

event_id
string
required

The identifier of the Event to retrieve.

Response

200
application/json
Event

Events are records of updates on Swift objects. Events can be accessed via the List Events API or via webhooks configured via Event Subscriptions.

associated_object_id
string
required

The identifier of the object that generated this Event.

associated_object_type
enum<string>
required

The type of the object that generated this Event.

Available options:
entity,
account,
user,
user_bank,
venmo_account,
zelle_account,
rtp_request,
fednow_request,
wire_transfer
created_at
string
required

The ISO 8601 time at which the Event was created.

event_category
enum<string> | null
required

The available categories for Events.

Available options:
entity.created,
entity.updated,
account.created,
account.updated,
user.created,
user.updated,
user_bank.created,
user_bank.updated,
venmo_account.created,
venmo_account.updated,
venmo_request.created,
venmo_request.updated,
zelle_account.created,
zelle_account.updated,
zelle_request.created,
zelle_request.updated,
rtp_request.created,
rtp_request.updated,
fednow_request.created,
fednow_request.updated,
wire_transfer.created,
wire_transfer.updated,
event_subscription.created,
event_subscription.updated
id
string
required

The Event identifier.