Get all vanity domains.

GET /organization/vanity-domain

Responses

  • 200 array[object]

    Successful get of vanity domains

    • domain_name string Required

      The vanity domain to create.

    • service_type string Required

      The Canopy service to create the domain for.

      Values are os, borrower-portal, or guest-pay.

    • status string Required

      The status of the vanity domain.

      Values are pending, complete, failed, or deleting.

    • The status details.

    • records array[object] Required

      The DNS records to create.

      • name string Required

        The record name.

      • value string Required

        The record value.

      • type string Required

        DNS record type.

  • 401

    Unauthorized.

  • 403

    Forbidden.

  • 429

    Too many requests.

  • Unexpected Error.

GET /organization/vanity-domain
curl \
 -X GET https://<your_environment_name>-uat-api.canopyservicing.com/organization/vanity-domain \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response example (200)
[
  {
    "domain_name": "portal.wizebank.com",
    "service_type": "borrower-portal",
    "status": "pending",
    "status_details": "Waiting for validation.",
    "records": [
      {
        "name": "portal.wizebank.com",
        "value": "portal-wizebank-com-vanity.wizebank.tenant.canopyservicing.com.",
        "type": "CNAME"
      }
    ]
  }
]