1. The Branch Object

The Branch Object

This is an object representing pipeline branch in a space

Properties

  • id

    number

    Branch ID

  • name

    string

    Branch Name

  • space_id

    number

    Numeric id of a space

  • created_at

    string

    Creation date (Format: yyyy-MM-dd'T'HH:mm:ssZ)

  • deleted_at

    string

    Deleted date (Format: YYYY-mm-dd HH:MM)

  • updated_at

    string

    Latest update date (Format: yyyy-MM-dd'T'HH:mm:ssZ)

  • deployed_at

    string

    Deployed date (Format: yyyy-MM-dd'T'HH:mm:ssZ)

  • source_id

    number

    Source of this branch null or id of another branch

  • url

    string

    Preview URL for this branch

  • position

    number

    Numeric representation of the branch position

Example Object
{
	"branch": {
		"id": 31352,
		"name": "Development",
		"space_id": 273116,
		"deleted_at": null,
		"created_at": "2024-03-04T10:41:57.281Z",
		"updated_at": "2024-03-04T10:41:57.281Z",
		"source_id": null,
		"deployed_at": null,
		"url": null,
		"position": 1
	}
}