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

  • deleted_at

    string

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

  • created_at

    string

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

  • updated_at

    string

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

  • source_id

    number or null

    Source of this branch null or id of another branch

  • deployed_at

    string

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

  • url

    string

    Preview URL for this branch

  • position

    number

    Numeric representation of the branch position

Example Object
{
	"branch": {
       "id": 30443,
        "name": "Branche Dev",
        "space_id": 234234,
        "deleted_at": null,
        "created_at": "2023-08-28T20:17:38.204Z",
        "updated_at": "2024-05-30T09:14:59.842Z",
        "source_id": 30403,
        "deployed_at": "2024-05-30T08:18:38.439Z",
        "url": "https://quickstart.me.storyblok.com/",
        "position": 2
	}
}