Updated on 2023-09-27 GMT+08:00

Querying the Holiday List of an Outbound Campaign

Prerequisites

  • You have applied for a developer account.
  • The ID of the outbound campaign has been obtained.

Scenario

This interface is invoked to query holidays of a specified outbound campaign.

Method

This interface supports only the GET method.

URI

https://ip:port/rest/isales/v1/openapi/campaigns/{vdnId}/holiday/{campaignId}

In the URL, ip indicates the IP address of the CC-iSales server, and port indicates the HTTPS port number of the CC-iSales server.

Table 1 Parameters in the URL

No.

Parameter

Type

Mandatory or Not

Description

1

vdnId

Integer

Yes

VDN ID.

The value is an integer ranging from 1 to 9999.

2

campaignId

Integer

Yes

ID of an outbound campaign.

Request Description

Table 2 Request header parameters

No.

Parameter

Type

Mandatory or Not

Description

1

Content-Type

String

Yes

The value is fixed to application/json; charset=UTF-8.

2

Authorization

String

Yes

For details about the generation mode, see C2 Monitoring, System Outbound Call, CDR, and Knowledge Base Interface Authentication.

No request body exists.

Response Description

Table 3 Response body parameters

No.

Parameter

Type

Description

1

resultCode

String

Error code. The value 0200000 indicates success, and other values indicate failure.

For details, see Table 5.

2

resultDesc

String

Description.

3

data

List

Holidays that are returned after the query is successful.

For details, see Table 4.

4

returnCode

String

Error code. The value 0200000 indicates success, and other values indicate failure.

For details, see Table 5.

5

returnDesc

String

Description.

Table 4 Parameter description of data

No.

Parameter

Type

Description

3.1

id

Integer

Holiday ID.

3.2

name

String

Holiday name.

3.3

type

Integer

Holiday type.

The options are as follows:

1: set by week

2: set by date

3: repeat by date

3.4

week

String

Day of week. This parameter is mandatory when type is set to 1.

The options are as follows:

1: Monday

2: Tuesday

3: Wednesday

4: Thursday

5: Friday

6: Saturday

7: Sunday

If multiple days are selected, separate them with commas (,). For example, 6,7 indicates Saturday and Sunday.

3.5

beginTime

String

Start time.

When type is 2, the data format is yyyy-MM-dd.

When type is 3, the data format is MM-dd.

3.6

endTime

String

End time.

When type is 2, the data format is yyyy-MM-dd.

When type is 3, the data format is MM-dd.

Triggered Event

None

Error Codes

Table 5 Error code description

No.

Error Code

Description

1

0200001

Parameter error. For details about the error, see resultDesc.

2

0200007

The outbound campaign does not exist.

3

02000001

Empty parameter.

4

02000002

The parameter contains invalid characters.

5

02000003

The parameter length cannot exceed the maximum length.

6

02000004

The parameter length cannot be less than the minimum length.

7

02000005

The parameter length must be within the specified range.

8

02000006

Incorrect parameter type.

9

02000007

Incorrect parameter value.

10

02000008

Parameter conversion error. Check the request parameters.

11

02000009

Incorrect parameter combination. Check the request parameters.

12

02000010

The hour and minute parameters must be set at the same time.

13

02000011

The number of parameters cannot exceed the specified number.

Example

  • The following provides an example of the request body of this interface:

    None

  • The following provides an example of the response body of this interface:
    {
        "resultCode": "0200000",
        "resultDesc": "",
        "data": [
            {
                "id": 11,
                "name": "Weekend",
                "type": 1,
                "week": "5,7",
                "beginTime": null,
                "endTime": null
            },
            {
                "id": 14,
                "name": "Mid-Autumn Festival",
                "type": 2,
                "week": null,
                "beginTime": "2018-09-22",
                "endTime": "2018-09-24"
            }
        ]
    }