Get outbound settings
Get the outbound settings for a team by ID.
GET
/
api
/
teams
/
{teamId}
/
outbound
curl --request GET \
--url https://firstquadrant.ai/api/teams/{teamId}/outbound \
--header 'Bearer API key: <api-key>'
{
"id": "tea_qxwVhUwAj3ijxWXstmCNvIII",
"createdAt": "2024-05-12T00:00:00.000Z",
"updatedAt": "2024-05-12T00:00:00.000Z",
"followUpStrategy": "EXPONENTIAL",
"followUpIntervalDays": 3,
"followUpMaxCount": 5,
"domainRedirectUrl": "https://firstquadrant.ai",
"markAsLostDelayDays": 7,
"openTrackingEnabled": true,
"clickTrackingEnabled": true,
"autopilotCampaignStepsEnabled": true,
"autopilotReplyErrorEnabled": true,
"autopilotReplyPositiveEnabled": true,
"autopilotReplyNegativeEnabled": true,
"autopilotReplyNeutralEnabled": true,
"autopilotReplyForwardedEnabled": true,
"autopilotReplyMaybeLaterEnabled": true,
"autopilotReplyOutOfOfficeEnabled": true,
"autopilotReplyAutomatedEnabled": true,
"autopilotReplyInformationRequestedEnabled": true,
"dailySendTimes": {
"monday": {
"start": "09:00",
"end": "17:00"
},
"tuesday": {
"start": "09:00",
"end": "17:00"
},
"wednesday": {
"start": "09:00",
"end": "17:00"
},
"thursday": {
"start": "09:00",
"end": "17:00"
},
"friday": {
"start": "09:00",
"end": "17:00"
},
"saturday": {
"start": "09:00",
"end": "17:00"
},
"sunday": {
"start": "09:00",
"end": "17:00"
}
},
"unsubscribeEnabled": true,
"unsubscribeText": "If you don't want to hear from me, [let me know](#unsubscribe-link).",
"forwardEmailsInbound": [
"enquiry@firstquadrant.ai"
],
"forwardEmailsOutbound": [
"enquiry@firstquadrant.ai"
],
"forwardReplyErrorEnabled": true,
"forwardReplyPositiveEnabled": true,
"forwardReplyNegativeEnabled": true,
"forwardReplyNeutralEnabled": true,
"forwardReplyForwardedEnabled": true,
"forwardReplyMaybeLaterEnabled": true,
"forwardReplyOutOfOfficeEnabled": true,
"forwardReplyAutomatedEnabled": true,
"forwardReplyInformationRequestedEnabled": true,
"aggressiveness": 3
}
Authorizations
The API key used to authenticate requests, learn how to generate an API key on the Authentication page.
Response
200 - application/json
Outbound settings object
The response is of type object
.
curl --request GET \
--url https://firstquadrant.ai/api/teams/{teamId}/outbound \
--header 'Bearer API key: <api-key>'
{
"id": "tea_qxwVhUwAj3ijxWXstmCNvIII",
"createdAt": "2024-05-12T00:00:00.000Z",
"updatedAt": "2024-05-12T00:00:00.000Z",
"followUpStrategy": "EXPONENTIAL",
"followUpIntervalDays": 3,
"followUpMaxCount": 5,
"domainRedirectUrl": "https://firstquadrant.ai",
"markAsLostDelayDays": 7,
"openTrackingEnabled": true,
"clickTrackingEnabled": true,
"autopilotCampaignStepsEnabled": true,
"autopilotReplyErrorEnabled": true,
"autopilotReplyPositiveEnabled": true,
"autopilotReplyNegativeEnabled": true,
"autopilotReplyNeutralEnabled": true,
"autopilotReplyForwardedEnabled": true,
"autopilotReplyMaybeLaterEnabled": true,
"autopilotReplyOutOfOfficeEnabled": true,
"autopilotReplyAutomatedEnabled": true,
"autopilotReplyInformationRequestedEnabled": true,
"dailySendTimes": {
"monday": {
"start": "09:00",
"end": "17:00"
},
"tuesday": {
"start": "09:00",
"end": "17:00"
},
"wednesday": {
"start": "09:00",
"end": "17:00"
},
"thursday": {
"start": "09:00",
"end": "17:00"
},
"friday": {
"start": "09:00",
"end": "17:00"
},
"saturday": {
"start": "09:00",
"end": "17:00"
},
"sunday": {
"start": "09:00",
"end": "17:00"
}
},
"unsubscribeEnabled": true,
"unsubscribeText": "If you don't want to hear from me, [let me know](#unsubscribe-link).",
"forwardEmailsInbound": [
"enquiry@firstquadrant.ai"
],
"forwardEmailsOutbound": [
"enquiry@firstquadrant.ai"
],
"forwardReplyErrorEnabled": true,
"forwardReplyPositiveEnabled": true,
"forwardReplyNegativeEnabled": true,
"forwardReplyNeutralEnabled": true,
"forwardReplyForwardedEnabled": true,
"forwardReplyMaybeLaterEnabled": true,
"forwardReplyOutOfOfficeEnabled": true,
"forwardReplyAutomatedEnabled": true,
"forwardReplyInformationRequestedEnabled": true,
"aggressiveness": 3
}