Shift Tender Status

Status of the jobs a candidate has already applied for.

Get tenders

GET https://www.ondemandstaffing.app/api/v1/shifts/view_past_tenders/

This endpoint allows you to get all existing applications for a user.

Query Parameters

Name
Type
Description

tenant

string

Must send the unique key identifying tenant.

Headers

Name
Type
Description

Authentication

string

Every authenticated user will have an authentication token. You need to send this auth token as Access-Token or HTTP_AUTHORIZATION for beareer token.

[
   {
      "tender_status":"accepted",
      "is_full":true,
      "title":"My admin title is here",
      "start":"2020-05-08T09:30:00.000Z",
      "end":"2020-05-08T18:00:00.000Z",
      "address":"229 Broadway, New York, NY, USA",
      "client":"Test Client 22",
      "price":"15.0",
      "notes":"Hello Test 123 alpha and omega.",
      "tender_id":46776,
      "shift_id":2203,
      "campaign_id":848,
      "tender":{
         "id":46776,
         "shift_id":2203,
         "freelancer_id":41301,
         "status":"accepted",
         "remark":null,
         "price":"15.0",
         "created_at":"2020-05-06T18:38:05.464Z",
         "updated_at":"2020-05-06T18:38:11.813Z",
         "preference_rank":null,
         "preference_description":null,
         "attributes_rank":null,
         "attributes_description":null,
         "availability_freshness":null,
         "notification":"pending"
      },
      "shift":{
         "id":2203,
         "campaign_id":848,
         "position":2,
         "address":"229 Broadway, New York, NY, USA",
         "latitude":40.6957921,
         "longitude":-73.9331318,
         "status":"live",
         "start":"2020-05-08T09:30:00.000Z",
         "end":"2020-05-08T18:00:00.000Z",
         "created_at":"2020-05-06T18:27:57.767Z",
         "updated_at":"2020-05-06T18:38:11.809Z",
         "open":0,
         "access":"11.0",
         "access_time":null,
         "due":null,
         "payable":null,
         "paid":null,
         "income_id":null,
         "country_id":6,
         "city_id":4961,
         "price":"20.0",
         "pricing_id":49,
         "net_payable":null,
         "contact_name":null,
         "contact_number":null,
         "contact_email":null,
         "post_instruction":null,
         "notification_cat":"all_nearby",
         "panic_notification_cat":"all_above_6",
         "timezo":null,
         "notifiable_staff":null,
         "next_notif":null,
         "notif_command":null,
         "required_applications":null
      },
      "campaign":{
         "id":2203,
         "campaign_id":848,
         "position":2,
         "address":"229 Broadway, New York, NY, USA",
         "latitude":40.6957921,
         "longitude":-73.9331318,
         "status":"live",
         "start":"2020-05-08T09:30:00.000Z",
         "end":"2020-05-08T18:00:00.000Z",
         "created_at":"2020-05-06T18:27:57.767Z",
         "updated_at":"2020-05-06T18:38:11.809Z",
         "open":0,
         "access":"11.0",
         "access_time":null,
         "due":null,
         "payable":null,
         "paid":null,
         "income_id":null,
         "country_id":6,
         "city_id":4961,
         "price":"20.0",
         "pricing_id":49,
         "net_payable":null,
         "contact_name":null,
         "contact_number":null,
         "contact_email":null,
         "post_instruction":null,
         "notification_cat":"all_nearby",
         "panic_notification_cat":"all_above_6",
         "timezo":null,
         "notifiable_staff":null,
         "notified_staff":null,
         "next_notif":null,
         "notif_command":null,
         "required_applications":null
      }
   }
]

Last updated

Was this helpful?