Gigs

About Gigs

What are gigs?

Gigs represent opportunities for work. A Gig has a start and end date during which workers can perform tasks. Cirro can - and by default will automatically - invite workers for Gigs in waves, until the gig is full or the end date is reached.

Related guide: Gigs & Invitations

The gig object

Attributes

AttributeTypeDescription
idstringThe unique identifier of the gig.
objectstringAlways "gig"
titlestringThe title of the gig.
descriptionstringThe description of the gig.
urlstringThe URL of the gig in the Space.
start_atnumberThe start date/time as a UNIX timestamp.
end_atnumberThe end date/time as a UNIX timestamp.
archive_atnumberThe date/time at which this Gig should be automatically archived, as a UNIX timestamp.
archived_atnumberThe archival date/time as a UNIX timestamp.
total_seatsnumberThe total number of seats for the gig.
seats_minnumberThe minimum number of seats for the gig.
This value controls the invitation wave, when the number of accepted gig invitations is above it, invitation wave will stop. Otherwise it will start auto inviting again.
seats_maxnumberThe maximum number of seats for the gig.
When this value is set and the amount of accepted gig invitations reaches this value Cirro will automatically expire all remaining pending gig invitations.
invitation_modeenumThe invitation mode of the gig.
Possible values are: auto and manual.
invitation_multipliernumberThe invitation multiplier of the gig.
Used to calculate the number of invitations sent out per wave: total seats x multiplier
invitation_frequencynumberThe invitation wave frequency in minutes for this Gig.
Default: 5
filter_queryobjectThe filter query object for finding matching Workers (MQL)
sort_queryobjectThe sorting query object for defining the sort order with which matching Workers are invited (MQL)
notification_payloadobjectkey value pairs to be used in invitation email templates
invitation_notification_topicobjectThe notification topic used for gig invitation.
by default Cirro triggers new_gig_invitation notification for auto invites, you can overwrite it with a different topic with id or name
tasksobjectA list object containing tasks available in this Gig and their respective payout base price.
epam_optionsobjectEPAM specific options for controlling certain EPAM-internal processes. If you don't know what this means, you can and should ignore it.

Example

{
  "id": "5115b65b-d1da-4f73-a8e7-1cc914fac181",
  "object": "gig",
  "title": "Tree planting event",
  "description": "Description of gig ...",
  "url": "https://plant-a-tree.com/events/1234",
  "start_at": 1652285764,
  "end_at": 1653412329,
  "archived_at": null,
  "total_seats": 2,
  "seats_min": 2,
  "seats_max": null,
  "invitation_mode": "auto",
  "invitation_multiplier": 10,
  "invitation_frequency": 5,
  "filter_query": {
      "status": "active",
      "segment": "my_favorite_testers"
  },
  "tasks": {
      "object": "list",
      "data": [
          {
              "id": "1",
              "object": "gig_task"
              "title": "Ah, Wilderness!",
              "base_price": 300
          }
      ]
  },
  "notification_payload": {
      "project_title": "Corporate Tax",
      "task_title": "Add dataset",
      "task_type": "Review"
  },
  "invitation_notification_topic": {
      "id": "2",
      "object": "notification_topic",
      "name": "new_gig_invitation"
  },
  "epam_options": {
      "extra_mile": true
  }
}
Previous
Create an Invitation Attempt for a User