Add a custom domain to the protected application.

POST /api/applications/{id}/protected-app-metadata/custom-domains

Add a custom domain to the protected application. You'll need to setup DNS record later. This feature is not available for open source version.

Path parameters

  • id string Required

    The unique identifier of the application.

application/json

Body Required

  • domain string Required

    The domain to be added to the application.

Responses

  • 201

    The domain has been added to the application.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Not Found

  • 409

    The domain already exists.

  • 422

    Exeeded the maximum number of domains allowed or the domain is invalid.

  • 501

    Not Implemented

POST /api/applications/{id}/protected-app-metadata/custom-domains
curl \
 -X POST https://[tenant_id].logto.app/api/applications/{id}/protected-app-metadata/custom-domains \
 -H "Content-Type: application/json" \
 -d '{"domain":"string"}'
Request example
{
  "domain": "string"
}