Create job
documentedCreate a new job.
POST /api_1.0/job.jsonJobsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.servicem8.com/api_1.0/job.json" \
-X POST \
-H "X-API-Key: {{SERVICEM8_API_KEY}}" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"job_address": "{{$job_address}}", "client_id": "{{$client_id}}", "description": "{{$description}}", "start_date": "{{$start_date}}", "end_date": "{{$end_date}}", "job_type_id": "{{$job_type_id}}"}'