Skip to main content
Ground Control | Tier 1
August 11, 2026
Question

HR Job Posting Agent

  • August 11, 2026
  • 3 replies
  • 24 views

I’m running the Post Job via API skill, and its not working.

 

I eventually ran the skill in Debug and I can see a 500 - Internal Server Error :(

 

 

    3 replies

    Ground Control | Tier 1
    August 11, 2026

    Can you also share the URL, I had to pause the video and manually type the POST url

    Aaron.Gleason
    Automation Anywhere Team
    Automation Anywhere Team
    August 11, 2026

    @Derrick 830 Check the video description for the URI and authentication tokens. 

    Ground Control | Tier 1
    August 11, 2026

    I’ve figured out what the problem is with the Post Job via API skill..

    The payload provided has an error in it specifically with this:

     "benefits":"[{{benefits}}]",

    that should be

     "benefits":[{{benefits}}],

     

    and each item in the benefits comma delimited string needs to be in DOUBLE QUOTES

    e.g.

    "benefits":"[Health Insurance,Paid Time Off]"  - results in this error {"error":"Failed to create job posting","details":"malformed array literal: \"[Health Insurance,Paid Time Off]\""}

    it works if the benefits are sent like this:

    "benefits":[“Health Insurance”,”Paid Time Off”]

     

    thanks..