Get an Application
Retrieve full application details including SMTP credentials and sending key.
Retrieve full application details, including SMTP credentials, sending key, authorized domains, IP allowlist, and outbound IPs.
Scope: applications.read
Path Parameters
application_idintegerrequiredThe ID of the application to retrieve.
Response
idintegeroptionalApplication ID.
namestringoptionalApplication name.
smtp_usernamestringoptionalSMTP username.
smtp_passwordstringoptionalSMTP password.
sending_keystringoptionalSending key.
authorized_domainsarrayoptionalAuthorized domains, each with domain_id and domain_name.
ip_allowlistarrayoptionalIP allowlist entries, each with an ip_block.
outbound_ipsarrayoptionalOutbound IP allotments, each with an allotment_id.
notesstringoptionalApplication notes.
Sample Response
200 OK
{
"data": {
"id": 10,
"name": "My App",
"smtp_username": "app10",
"smtp_password": "...",
"sending_key": "roo_...",
"authorized_domains": [
{
"domain_id": 123,
"domain_name": "example.com"
}
],
"ip_allowlist": [
{
"ip_block": "203.0.113.0/24"
}
],
"outbound_ips": [],
"notes": ""
}
}