cURL
curl --request GET \ --url https://api.example.com/cast-members/{id}
{ "id": "<string>", "person_id": "<string>", "production_id": "<string>", "role_id": "<string>", "role_type": "<string>", "billing_order": 123 }
Retrieve a specific cast member assignment by ID
curl https://entertheatre.com/api/cast-members/cast-001
principal
ensemble
understudy
swing
standby
alternate
{ "id": "cast-001", "person_id": "person-001", "production_id": "prod-001", "role_id": "role-001", "role_type": "principal", "billing_order": 1 }
{ "error": "Cast member not found" }
200
404
500