Microsoft Azure PlayFab logo
    • Multiplayer
    • LiveOps
    • Data & Analytics
    • Add-ons
    • For Any Role

      • Engineer
      • Designer
      • Executive
      • Marketer
    • For Any Stage

      • Build
      • Improve
      • Grow
    • For Any Size

      • Solo
      • Indie
      • AAA
  • Runs on PlayFab
  • Pricing
    • Blog
    • Forums
    • Contact us
  • Sign up
  • Sign in
  • Ask a question
  • Spaces
    • PlayStream
    • Feature Requests
    • Add-on Marketplace
    • Bugs
    • API and SDK Questions
    • General Discussion
    • LiveOps
    • Topics
    • Questions
    • Articles
    • Ideas
    • Users
    • Badges
  • Home /
  • API and SDK Questions /
avatar image
Question by mobilEKG · Jul 14, 2021 at 07:09 AM · CloudScripttasks

UpdateTask Error

Need to execute a function at a scheduled time, once only. So I create a task and at the end of the task function use UpdateTask API to disable this task by set active property to false. But UpdateTask API keeps return error:

{
  "code": 400,
  "status": "BadRequest",
  "error": "InvalidParams",
  "errorCode": 1000,
  "errorMessage": "Invalid input parameters",
  "errorDetails": {
    "Name": [
      "The Name field is required."
    ],
    "Identifier": [
      "The Identifier field is required."
    ]
  }
}

Here is Cloud Script code:

let url = "https://" + TITLE_ID + ".playfabapi.com/Admin/UpdateTask";
let method = "post";
let contentBody = JSON.stringify({
    Identifier: {Name: taskName},
    Name: taskName,
    Schedule: schedule,
    Parameter: {FunctionName: functionName, Argument: {}},
    Type: {CloudScript: functionName},
    IsActive: false
});
let contentType = "application/json";
let headers = {"X-SecretKey": X_SECRET_KEY};
let responseStr: string = http.request(url, method, contentBody, contentType, headers);

As the code shows Name & Identifier fields attached. The error message dosen't make sense to me. Any hint or suggestion? Thanks.

BTW, the DeleteTask & CreateTask APIs work great.

Comment

People who like this

0 Show 0
10 |1200 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
Best Answer

Answer by Rick Chen · Jul 15, 2021 at 07:05 AM

The “Type” parameter in the request body of UpdateTask API should be one of the Scheduled Task Type, in string. For example, you could change the 8th line of your 2nd code snippet to

 Type: "CloudScript",

Please check the UpdateTask API document for more detail.

Comment

People who like this

0 Show 0 · Share
10 |1200 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Navigation

Spaces
  • General Discussion
  • API and SDK Questions
  • Feature Requests
  • PlayStream
  • Bugs
  • Add-on Marketplace
  • LiveOps
  • Follow this Question

    Answers Answers and Comments

    4 People are following this question.

    avatar image avatar image avatar image avatar image

    Related Questions

    Leaderboard reset at custom time 1 Answer

    server.DeletePlayer is not a method 1 Answer

    Can Cloud Code Access the Admin API 1 Answer

    Azure Functions - context return null, Scheduled Tasks faild [two questions] 3 Answers

    What is the execution time limit for a Cloud Script function called From a Task? 1 Answer

    PlayFab

    • Multiplayer
    • LiveOps
    • Data & Analytics
    • Runs on PlayFab
    • Pricing

    Solutions

    • For Any Role

      • Engineer
      • Designer
      • Executive
      • Marketer
    • For Any Stage

      • Build
      • Improve
      • Grow
    • For Any Size

      • Solo
      • Indie
      • AAA

    Engineers

    • Documentation
    • Quickstarts
    • API Reference
    • SDKs
    • Usage Limits

    Resources

    • Forums
    • Contact us
    • Blog
    • Service Health
    • Terms of Service
    • Attribution

    Follow us

    • Facebook
    • Twitter
    • LinkedIn
    • YouTube
    • Sitemap
    • Contact Microsoft
    • Privacy & cookies
    • Terms of use
    • Trademarks
    • Safety & eco
    • About our ads
    • © Microsoft 2020
    • Anonymous
    • Sign in
    • Create
    • Ask a question
    • Create an article
    • Post an idea
    • Spaces
    • PlayStream
    • Feature Requests
    • Add-on Marketplace
    • Bugs
    • API and SDK Questions
    • General Discussion
    • LiveOps
    • Explore
    • Topics
    • Questions
    • Articles
    • Ideas
    • Users
    • Badges