The Unity Cloud Build API provides a powerful way to automate your builds and take advantage of incremental cloud builds on multiple platforms. With this API, developers can create a cloud-based build pipeline, enabling them to create builds on the fly and maintain a consistently high-quality product.
The Unity Cloud Build API is an ideal tool for streamlining the build process and taking full advantage of the cloud. With the API, developers can:
Examples of products that can be built using the Unity Cloud Build API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
unity_cloud_build: {
type: "app",
app: "unity_cloud_build",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://build-api.cloud.unity3d.com/api/v1/users/me`,
auth: {
username: `${this.unity_cloud_build.$auth.api_key}`,
password: ``,
},
})
},
})
The Unity Cloud Build API does not require authentication.