Get Team Callbacks

Get the success/failure callbacks and variables for a team

Parameters:

  • team_id (str, required): The unique identifier for the team

Example curl:

curl -X GET 'http://localhost:4000/team/dbe2f686-a686-4896-864a-4c3924458709/callback'         -H 'Authorization: Bearer sk-1234'

This will return the callback settings for the team with id dbe2f686-a686-4896-864a-4c3924458709

Returns {
"status": "success",
"data": {
"team_id": team_id,
"success_callbacks": team_callback_settings_obj.success_callback,
"failure_callbacks": team_callback_settings_obj.failure_callback,
"callback_vars": team_callback_settings_obj.callback_vars,
},
}

Language
Credentials
Bearer
URL
Click Try It! to start a request and see the response here!