Gig Invitations
About Gig Invitation
What are Gig Invitations?
Gig Invitation is an invitation for a user to a specific gig. It can be accepted/rejected by a user. Also, we can reset and expire a Gig Invitation.
The Gig Invitation Object
Attribute | Type | Note |
---|---|---|
id | string | ID of the gig invitation |
object | string | Type of the object, always "gig_invitation" |
status | string | Current status of the gig invitation, e.g., "accepted" |
no_reward | boolean | Indicates if there is no reward associated with the gig (false by default) |
gig_id | string | ID of the gig associated with the invitation |
user_id | string | ID of the user invited to the gig |
Example
{
"id": "1",
"object": "gig_invitation",
"status": "accepted",
"no_reward": false,
"gig_id": "1",
"user_id": "1"
}