> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.itspropel.com/llms.txt.
> For full documentation content, see https://docs.itspropel.com/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.itspropel.com/_mcp/server.

# Get Assignment

GET https://work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D

Get a specific assignment by UUID.

**Required Permission:** `view_assignments`

## Response Attributes
- `assignment_type`: primary, secondary, lead, apprentice, specialist, supervisor, backup, observer
- `technician_role`: technician, senior_tech, lead_tech, apprentice, specialist, inspector, safety_officer, customer_liaison
- `assignment_status`: assigned, acknowledged, accepted, declined, en_route, on_site, working, break, waiting, completed, cancelled, reassigned, no_show
- `assignment_method`: manual, auto_assigned, self_assigned, escalated, emergency
- `compensation`: hourly_rate, overtime_rate, travel_rate, estimated_labor_cost, actual_labor_cost, overtime_applicable, regular_hours_worked, overtime_hours_worked
- `sequence`: assignment_sequence, is_primary
- `timestamps`: assigned_at, acknowledged_at, accepted_at, tools_verified_at, safety_briefing_at, customer_signature_time, quality_reviewed_at, mobile_sync_at
- `location`: estimated_travel_distance, estimated_travel_minutes, actual_travel_distance, actual_travel_minutes, travel_route, last_gps_update, last_known_location
- `notes`: assignment_notes, performance_notes, safety_notes, customer_communication_notes, quality_review_notes, post_assignment_notes, reassignment_reason, lessons_learned
- `performance`: performance_rating, quality_score, efficiency_score, customer_interaction_score, completion_rate, completed_on_time, completed_within_estimate, customer_satisfaction_score
- `requirements`: responsibilities, assigned_tasks, can_work_independently, requires_supervision, all_requirements_met, requires_regular_updates, update_frequency_minutes, communication_preferences, can_be_reassigned, requires_special_vehicle, required_vehicle_type, assigned_tools, assigned_equipment, assigned_materials, tools_verified, safety_requirements_met, certifications_verified, safety_briefing_completed, ppe_verified, customer_facing_role, primary_customer_contact, customer_signature_required, customer_signature_obtained, mobile_app_required, offline_mode_enabled, mobile_permissions, gps_tracking_enabled, requires_quality_review, quality_review_completed, quality_review_passed, requires_follow_up, follow_up_date, follow_up_completed, available_for_similar_jobs
- `metadata`: reassignment_count, reassignment_history, was_emergency_assignment, was_last_minute_assignment, callbacks_generated, external_assignment_id, external_references, synced_to_mobile

Reference: https://docs.itspropel.com/propel-biz/11-work-order/02-work-order-assignments/get-assignment

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: PropelBiz
  version: 1.0.0
paths:
  /work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D:
    get:
      operationId: get-assignment
      summary: Get Assignment
      description: >-
        Get a specific assignment by UUID.


        **Required Permission:** `view_assignments`


        ## Response Attributes

        - `assignment_type`: primary, secondary, lead, apprentice, specialist,
        supervisor, backup, observer

        - `technician_role`: technician, senior_tech, lead_tech, apprentice,
        specialist, inspector, safety_officer, customer_liaison

        - `assignment_status`: assigned, acknowledged, accepted, declined,
        en_route, on_site, working, break, waiting, completed, cancelled,
        reassigned, no_show

        - `assignment_method`: manual, auto_assigned, self_assigned, escalated,
        emergency

        - `compensation`: hourly_rate, overtime_rate, travel_rate,
        estimated_labor_cost, actual_labor_cost, overtime_applicable,
        regular_hours_worked, overtime_hours_worked

        - `sequence`: assignment_sequence, is_primary

        - `timestamps`: assigned_at, acknowledged_at, accepted_at,
        tools_verified_at, safety_briefing_at, customer_signature_time,
        quality_reviewed_at, mobile_sync_at

        - `location`: estimated_travel_distance, estimated_travel_minutes,
        actual_travel_distance, actual_travel_minutes, travel_route,
        last_gps_update, last_known_location

        - `notes`: assignment_notes, performance_notes, safety_notes,
        customer_communication_notes, quality_review_notes,
        post_assignment_notes, reassignment_reason, lessons_learned

        - `performance`: performance_rating, quality_score, efficiency_score,
        customer_interaction_score, completion_rate, completed_on_time,
        completed_within_estimate, customer_satisfaction_score

        - `requirements`: responsibilities, assigned_tasks,
        can_work_independently, requires_supervision, all_requirements_met,
        requires_regular_updates, update_frequency_minutes,
        communication_preferences, can_be_reassigned, requires_special_vehicle,
        required_vehicle_type, assigned_tools, assigned_equipment,
        assigned_materials, tools_verified, safety_requirements_met,
        certifications_verified, safety_briefing_completed, ppe_verified,
        customer_facing_role, primary_customer_contact,
        customer_signature_required, customer_signature_obtained,
        mobile_app_required, offline_mode_enabled, mobile_permissions,
        gps_tracking_enabled, requires_quality_review, quality_review_completed,
        quality_review_passed, requires_follow_up, follow_up_date,
        follow_up_completed, available_for_similar_jobs

        - `metadata`: reassignment_count, reassignment_history,
        was_emergency_assignment, was_last_minute_assignment,
        callbacks_generated, external_assignment_id, external_references,
        synced_to_mobile
      tags:
        - subpackage_11WorkOrder.subpackage_11WorkOrder/02WorkOrderAssignments
      parameters:
        - name: '{{tenant_key_name}}'
          in: header
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/11 Work Order_02 Work Order
                  Assignments_Get Assignment_Response_200
servers:
  - url: https:/
components:
  schemas:
    11 Work Order_02 Work Order Assignments_Get Assignment_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: 11 Work Order_02 Work Order Assignments_Get Assignment_Response_200

```

## SDK Code Examples

```python
import requests

url = "https://https/work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D"

payload = {}
headers = {
    "{{tenant_key_name}}": "{{tenant_key_value1}}|{{tenant_key_value2}}",
    "Content-Type": "application/json"
}

response = requests.get(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://https/work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D';
const options = {
  method: 'GET',
  headers: {
    '{{tenant_key_name}}': '{{tenant_key_value1}}|{{tenant_key_value2}}',
    'Content-Type': 'application/json'
  },
  body: '{}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://https/work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("GET", url, payload)

	req.Header.Add("{{tenant_key_name}}", "{{tenant_key_value1}}|{{tenant_key_value2}}")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://https/work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D")

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

request = Net::HTTP::Get.new(url)
request["{{tenant_key_name}}"] = '{{tenant_key_value1}}|{{tenant_key_value2}}'
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D")
  .header("{{tenant_key_name}}", "{{tenant_key_value1}}|{{tenant_key_value2}}")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D', [
  'body' => '{}',
  'headers' => [
    'Content-Type' => 'application/json',
    '{{tenant_key_name}}' => '{{tenant_key_value1}}|{{tenant_key_value2}}',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://https/work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D");
var request = new RestRequest(Method.GET);
request.AddHeader("{{tenant_key_name}}", "{{tenant_key_value1}}|{{tenant_key_value2}}");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "{{tenant_key_name}}": "{{tenant_key_value1}}|{{tenant_key_value2}}",
  "Content-Type": "application/json"
]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://https/work-orders/%7Bwork_order_id%7D/assignments/%7Bassignment_id%7D")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```