Return provider's DCV filename requirements

This function returns the provider's filename requirements for Domain Control Validation (DCV) checks.

SecurityBasicAuth
Request
query Parameters
provider
required
string

The cPanel Market provider's name.

Example: provider=cPStore
Responses
200

HTTP Request was successful.

Response Schema: application/json
apiversion
integer

The version of the API.

func
string

The name of the method called.

module
string

The name of the module called.

object
get/Market/get_provider_specific_dcv_constraints
Request samples
uapi --output=jsonpretty \
  --user=username \
  Market \
  get_provider_specific_dcv_constraints \
  provider='cPStore'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "get_provider_specific_dcv_constraints",
  • "module": "Market",
  • "result": {
    • "data": {
      • "dcv_file_allowed_characters": [
        • [
          • 0,
          • 1,
          • 2,
          • 3,
          • 4,
          • 5,
          • 6,
          • 7,
          • 8,
          • 9,
          • "A",
          • "B",
          • "C",
          • "D",
          • "E",
          • "F"
          ]
        ],
      • "dcv_file_extension": "txt",
      • "dcv_file_random_character_count": 32,
      • "dcv_file_relative_path": ".well-known/pki-validation",
      • "dcv_max_redirects": 0,
      • "dcv_user_agent_string": "COMODO DCV"
      },
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}