Skip to main content
PATCH
/
api
/
v2
/
channels
/
publish
/
tasks
/
{taskId}
/
publish-at
Update Publish Time
curl --request PATCH \
  --url https://aitoearn.cn/api/v2/channels/publish/tasks/{taskId}/publish-at \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "publishAt": "2023-11-07T05:31:56Z"
}
'
{
  "code": 0,
  "message": "Request succeeded",
  "data": {
    "taskId": "string"
  }
}

Authorizations

X-Api-Key
string
header
required

Need to get API Key from AiToEarn. Click to go to "API Key Obtaining Tutorial".

Path Parameters

taskId
string
required

Task ID

Body

application/json
publishAt
string<date-time>
required

Target release time

Response

200 - application/json

The request has been processed by the service. Business success is determined by whether the response body has code === 0.

code
integer
required

Business status code. 0 means success; non-zero means a business error.

message
string
required

Response message.

data
object
requestId
string

Request ID.

timestamp
integer

Error response timestamp in Unix milliseconds.