1. The Release Object

The Release Object

Properties

  • name

    string

    Name of the releases to be deployed

  • id

    number

    Numeric ID of a release

  • release_at

    string

    Date to deploy the release (Format: YYYY-mm-dd HH:MM)

  • released

    boolean

    Boolean if the release is released

  • uuid

    string

    Unique ID of the release

  • timezone

    string

    Timezone of the release

  • branches_to_deploy

    number[]

    An array of branches to deploy the release to

  • created_at

    string

    Date and time the release was created (Format: YYYY-mm-dd HH:MM)

  • owner_id

    number

    Numeric ID of the release owner

Example Object
{
    "releases": [
        {
            "name": "Winter Special Release",
            "id": 95629,
            "release_at": "2023-04-20T18:30:00.000Z",
            "released": false,
            "uuid": "b8997523-2837-4f75-8613-05da9e7471af",
            "timezone": "Africa/Algiers",
            "branches_to_deploy": [9,2],
            "created_at": "2023-04-20T17:15:47.646Z",
            "owner_id": 99734
        }
    ]
}