GitScrum / Docs

Sprint Created

Webhook payload reference for the sprints.store event, triggered when a sprint is created.

Triggered when a new sprint is created in the project.

  • Event: sprints.store
  • Category: Sprints
  • Triggers: Creating a sprint via the sprints panel

Payload

The payload contains the full sprint resource via SprintResource:

{
  "id": 15,
  "code": "S-15",
  "slug": "sprint-q1-week-3",
  "title": "Q1 Week 3",
  "color": "#3B82F6",
  "timebox": {
    "start": {
      "date_for_humans": "Feb 10, 2026",
      "iso8601": "2026-02-10T00:00:00+00:00",
      "timestamp": 1739145600
    },
    "finish": {
      "date_for_humans": "Feb 24, 2026",
      "iso8601": "2026-02-24T00:00:00+00:00",
      "timestamp": 1740355200
    }
  },
  "duration": 14,
  "date_start": "2026-02-10",
  "date_finish": "2026-02-24",
  "description": "<p>Focus on authentication and payment integration.</p>",
  "close_on_finish": false,
  "company": {
    "slug": "acme-corp",
    "name": "Acme Corp"
  },
  "project": {
    "slug": "web-platform",
    "name": "Web Platform"
  },
  "stats": {
    "story_points": 0,
    "worked_hours": 0,
    "total_tasks": 0,
    "open_tasks": 0,
    "closed_tasks": 0,
    "percentage": 0,
    "comments": 0
  },
  "status": {
    "slug": "open",
    "title": "Open",
    "color": "#3B82F6",
    "description": null
  },
  "user": {
    "id": 1,
    "uuid": "user-uuid-123",
    "name": "Jane Smith",
    "username": "janesmith",
    "avatar": "https://avatar.url/jane.jpg",
    "headline": "Lead Developer",
    "location": "Porto, Portugal",
    "timezone_name": "Europe/Lisbon",
    "language": "en",
    "created_at": {
      "date_for_humans": "1 year ago",
      "iso8601": "2025-01-15T10:00:00+00:00",
      "timestamp": 1736935200
    }
  },
  "users": [],
  "closed_at": null,
  "created_at": {
    "date_for_humans": "Just now",
    "iso8601": "2026-02-06T14:30:00+00:00",
    "timestamp": 1738852200
  }
}

Field Reference

FieldTypeDescription
idintegerSprint ID
codestringSprint code (e.g., S-15)
slugstringURL-friendly identifier
titlestringSprint name
colorstringHex color code
timeboxobjectContains start and finish date objects
durationintegerSprint length in days
date_startstringStart date (YYYY-MM-DD)
date_finishstringEnd date (YYYY-MM-DD)
descriptionstring or nullSprint description (HTML)
closeonfinishbooleanWhether tasks auto-close when sprint ends
companyobjectWorkspace slug and name
projectobjectProject slug and name
statsobjectCounts: storypoints, workedhours, totaltasks, opentasks, closed_tasks, percentage, comments
statusobjectStatus with slug, title, color, description
userobjectCreator
usersarrayMembers assigned to sprint tasks
closed_atobject or nullClosure timestamp
created_atobjectCreation timestamp

Notes

  • timebox.start and timebox.finish use the full DateResource format with dateforhumans, iso8601, and timestamp.
  • status.slug is one of: open, closed, archived.
  • duration is computed from start/finish dates.