Where can I get more detailed API documentation?
I am trying to use the addBuildStepToBuildType method and am looking at the docs. But it doesn't say what the payload should look like. Where can I find that information?
Please sign in to leave a comment.
Hello!
The "body" parameter is typed as Step; this is the payload you need to send over. Any parameter that has a complex type will have a link to the entity that represents that type, and the corresponding page has schema section which you may use for the reference.
If you wish some concrete examples (as opposed to autogenerated ones), these are available in the Common Use Cases section; for example, here is the payload for adding new build step. You may also set up a step manually, fetch it with a GET request and then reuse the schema for modifying requests.
I hope this helps.