Open Context Protocol is live! 🚀 Read the launch post

getProjectEmail

Get project’s sender email

GET /rest/api/3/project/{projectId}/email HTTP/1.1

Parameters

{
  "projectId": {
    "description": "The project ID.",
    "required": true,
    "location": "path",
    "type": "integer",
    "format": "int64"
  }
}

Response Schema

{
  "additionalProperties": false,
  "description": "A project's sender email address.",
  "properties": {
    "emailAddress": {
      "description": "The email address.",
      "type": "string"
    },
    "emailAddressStatus": {
      "description": "When using a custom domain, the status of the email address.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}