Get Specific Job Order

Get Specific Job Order

Purpose

To get the specific job of your organization.

Request URL

https://live.membroz.com/api/jobs/[jobid]

Request Method

GET
Note
  • Send authkey in https header
  • Enterprise customer can replace domain name with their hosting Url. for example https://app.xyz.com/api/jobs
  • API return matching job data or return error message.

Request JSON

Attribute Data Type Mandatory Description
JOBID String Yes The record ID of the job you want to update. it is pass in request
/api/jobs/[jobid]

Sample Request

curl --location --request GET 'https://live.membroz.com/api/jobs/[jobid]'\
--header 'authkey: XXXXXXXXXX'\
--header 'Content-Type: application/json' \
--data-raw '{ 
    "search": [
        { "searchfield": "status", "searchvalue": "active", "criteria": "eq", "datatype": "text" }
    ]
}'
OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
Request request = new Request.Builder()
  .url("https://live.membroz.com/api/jobs/[jobid]")
  .method("GET", null)
  .addHeader("authkey", "XXXXXXXXXX")
  .addHeader("Content-Type", "application/json")
  .build();
Response response = client.newCall(request).execute();
 "https://live.membroz.com/api/jobs/[jobid]",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_POSTFIELDS =>"{ \r\n    \"search\": [\r\n        { \"searchfield\": \"status\", \"searchvalue\": \"active\", \"criteria\": \"eq\", \"datatype\": \"text\" }\r\n    ]\r\n}",
  CURLOPT_HTTPHEADER => array(
    "authkey: XXXXXXXXXX",
    "Content-Type: application/json"
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
import requests

url = "https://live.membroz.com/api/jobs/[jobid]"

payload = "{ \r\n    \"search\": [\r\n        { \"searchfield\": \"status\", \"searchvalue\": \"active\", \"criteria\": \"eq\", \"datatype\": \"text\" }\r\n    ]\r\n}"
headers = {
  'authkey': 'XXXXXXXXXX',
  'Content-Type': 'application/json'
}

response = requests.request("GET", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
require "uri"
require "net/http"

url = URI("https://live.membroz.com/api/jobs/[jobid]")

https = Net::HTTP.new(url.host, url.port);
https.use_ssl = true

request = Net::HTTP::Get.new(url)
request["authkey"] = "XXXXXXXXXX"
request["Content-Type"] = "application/json"
request.body = "{ \r\n    \"search\": [\r\n        { \"searchfield\": \"status\", \"searchvalue\": \"active\", \"criteria\": \"eq\", \"datatype\": \"text\" }\r\n    ]\r\n}"

response = https.request(request)
puts response.read_body
var client = new RestClient("https://live.membroz.com/api/jobs/[jobid]");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("authkey", "XXXXXXXXXX");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{ \r\n    \"search\": [\r\n        { \"searchfield\": \"status\", \"searchvalue\": \"active\", \"criteria\": \"eq\", \"datatype\": \"text\" }\r\n    ]\r\n}",  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Possible Errors

HTTP Status Error Code Message Reason
permission denied 403 You do not have permission

Sample Response

{
    "status": "active",
    "_id": "5f86f0c00ce3361fcc69ec95",
    "prefix": "JO",
    "jobnumber": 2,
    "date": "2020-10-14T12:34:31.628Z",
    "notes": "Notes TESTIKNMG",
    "customerid":"5eb4e61a2b81e31504110b35",
    "onModel": "Member",
    "dispositionid": "5f7e9a9b3271df1d8b56c931",
    "dispositiondataid": "5f86f0bf0ce3361fcc69ec93",
    "tasks": "5f86f0c00ce3361fcc69ec96",
    "items":"5f86f0c00ce3361fcc69ec97",
    "totalamount": 60,
    "taxamount": 0,
    "branchid": "5eb4e4164df5b8f44508cbcc",
    "createdAt": "2020-10-14T12:36:16.354Z",
    "updatedAt": "2020-10-14T12:36:16.354Z",
    "updatedby": "5eb4e4164df5b8f44508cbce",
    "addedby": {
        "isfirstlogin": false,
        "status": "active",
        "_id": "5eb4e4164df5b8f44508cbce",
        "username": "membrozcarworkshop@gmail.com",
        "password": "$2a$10$vLkyHcfaCIBXp3B1o4n.Ze68HXVLR1/7INOXDhz7VhGkvvWflvB7m",
        "role": "5dd7e2b080199f0aecd400b5",
        "anroiddevices": [],
        "iosdevices": [],
        "designationid": "5c9a0e1112b3f913dc5ab3ba",
        "branchid": "5eb4e4164df5b8f44508cbcc",
        "property": {
            "fullname": "Membroz Service",
            "mobile_number": "8758363925",
            "email": "membrozservice@gmail.com",
            "country": "India",
            "membrozid": "5eb4e4164df5b8f44508cbcc",
            "isadmin": false
        },
        "createdAt": "2020-05-08T04:46:14.813Z",
        "updatedAt": "2020-05-08T04:47:00.243Z",
        "fullname": "Membroz Service ",
        "namenumber": "Membroz Service  | 8758363925",
        "salarycomponent": [],
        "leavecomponent": []
    }
}