Update a Job

Request Body Sample:

{
    "name":"Player B Updated",
    "description":"B player",
    "street":"Kathmandu",
    "require_geofence":1,
    "landmark":"",
    "state":"Kathmandu",
    "city":"Kathamdnu",
    "zip_code":"44600",
    "country":"Nepal",
    "latitude":26.012501,
    "longitude":-80.313614,
    "track_mileage":1,
    "radius": 100,
    "contact_required":1,
    "contact_name":"Dilip",
    "contact_phone":"123456",
    "contact_mobile":"",
    "contact_email":"[email protected]",
    "contact_email": "[email protected]",
    "job_status": false,
    "geofence_members":[1],
    "users":[1],,
     "custom_fields": {
          "6": "Example Custom Field Value",
          "7": "Internship"
      }
}

Where

  • all the fields are optional except street, city, state, zip_code and country are required when require_geofence is true or 1.
  • contact_name, contact_phone, contact_mobile, and contact_email are required when contact_required is true or 1.
  • the radius must be numeric and in meters.
  • custom_fields contains values for custom fields where
    • Key (id): Represents the unique identifier of a custom field. In this case:6 and 7 are the IDs for the respective custom fields.
    • Value (value): Contains the actual value assigned to the custom field.
Language
URL
Click Try It! to start a request and see the response here!