tencent cloud

Feedback

GetDisableRecords

Last updated: 2023-12-01 16:39:44

    1. API Description

    Domain name for API request: cdn.tencentcloudapi.com.

    This API is used to query the resource blocking history and the current URL status. (This API is in beta test and not generally available yet.)

    A maximum of 40 requests can be initiated per second for this API.

    We recommend you to use API Explorer
    Try it
    API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

    2. Input Parameters

    The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.

    Parameter Name Required Type Description
    Action Yes String Common Params. The value used for this API: GetDisableRecords.
    Version Yes String Common Params. The value used for this API: 2018-06-06.
    Region No String Common Params. This parameter is not required for this API.
    Url No String Specifies the URL to be queried
    StartTime No Timestamp Starting time, such as 2018-12-12 10:24:00
    EndTime No Timestamp End time, such as 2018-12-14 10:24:00
    Status No String Current URL status
    disable: The URL remains disabled, and accessing it will return an error 403
    enable: The URL is enabled (unblocked) and can be normally accessed
    Offset No Integer Offset for paginated queries. Default value: 0
    Limit No Integer Pagination limit. Default value: 20.
    TaskId No String Task ID. The task ID and start time cannot be both left empty.

    3. Output Parameters

    Parameter Name Type Description
    UrlRecordList Array of UrlRecord Blocking history
    Note: This field may return null, indicating that no valid value can be obtained.
    TotalCount Integer Total number of tasks, which is used for pagination.
    Note: This field may return null, indicating that no valid value can be obtained.
    RequestId String The unique request ID, which is returned for each request. RequestId is required for locating a problem.

    4. Example

    Example1 Getting blocking history

    Input Example

    https://cdn.tencentcloudapi.com/?Action=GetDisableRecords
    &StartTime=2018-12-12 10:24:00
    &EndTime=2018-12-14 10:24:00
    &<Common request parameters>
    

    Output Example

    {
        "Response": {
            "TotalCount": 2,
            "RequestId": "f13cf55b-69e6-4937-8856-bd8965beea8c",
            "UrlRecordList": [
                {
                    "Status": "enable",
                    "RealUrl": "https://www.example.com/7349199.txt",
                    "CreateTime": "2018-12-13 12:25:07",
                    "UpdateTime": "2018-12-13 12:25:07"
                },
                {
                    "Status": "disable",
                    "RealUrl": "http://www.example.com/v1/example1.jpg",
                    "CreateTime": "2018-12-13 14:40:59",
                    "UpdateTime": "2018-12-13 14:40:59"
                }
            ]
        }
    }
    

    5. Developer Resources

    SDK

    TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

    Command Line Interface

    6. Error Code

    The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.

    Error Code Description
    InternalError.CdnDbError Internal data error. Please submit a ticket for troubleshooting.
    InternalError.CdnSystemError System error. Please submit a ticket for troubleshooting.
    InternalError.Error Service internal error. Please submit a ticket for troubleshooting.
    InvalidParameter.CdnHostInvalidParam Invalid domain name format. Please check and try again.
    InvalidParameter.CdnInterfaceError Internal API error. Please submit a ticket for troubleshooting.
    InvalidParameter.CdnParamError Parameter error. Please see the sample parameters in the documentation.
    InvalidParameter.CdnStatInvalidDate Invalid date. Please see the sample date in the documentation.
    InvalidParameter.CdnStatInvalidProjectId Incorrect project ID. Please check and try again.
    ResourceNotFound.CdnHostNotExists Unable to find the domain name. Please make sure the domain name is correct.
    ResourceNotFound.CdnUserNotExists The CDN service has not been activated. Please activate it first before using this API.
    UnauthorizedOperation.CdnAccountUnauthorized The sub-account is unauthorized to query full data.
    UnauthorizedOperation.CdnCamUnauthorized No CAM policy is configured for the sub-account.
    UnauthorizedOperation.CdnUserAuthFail Fail to authenticate the CDN user.
    UnauthorizedOperation.CdnUserAuthWait The CDN user is pending authentication.
    UnauthorizedOperation.CdnUserIsSuspended The CDN service has been suspended. Please restart it and try again.
    UnauthorizedOperation.CdnUserNoWhitelist You are not in the beta whitelist and thus have no permission to use this function.
    UnauthorizedOperation.OperationTooOften Too many calling attempts.