Forge async events endpoints for submitting events to queues.
For information on error types and handling, see Async events API error handling.
Submit asynchronous events to the Forge events system. Events are queued for processing and will be delivered to the specified queue.
For information on error types and handling, see Async events API error handling.
string
Requiredstring
Async events data to be submitted
string
Requiredarray<AsyncEvent>
RequiredEvents submitted successfully
object
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
curl --request POST \
--url '{FORGE_EGRESS_PROXY_URL}/atlassian/forge/events/v1/async-events' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123' \
--header 'Content-Type: application/json' \
--data '{
"queueName": "my-app-events",
"events": [
{
"body": {
"payload": {
"key": "value",
"userId": "123",
"action": "user_login"
}
}
}
]
}'Rate this page: