I am trying to create a service request. I can’t seem to pass along a subject or other ticket information. Is there a way to pass this as part of the service request creation call?
https://DOMAIN.freshservice.com/api/v2/service_catalog/items/114/place_request
Payload:
{
"quantity": 1,
"subject": "Useful Subject",
"email": "user@acmecorp.com",
"custom_fields":{
"partner_name" : "ACME Corp",
"partner_country" : "United States"
}
}
Response:
{
"description": "Validation failed",
"errors": s
{
"field": "subject",
"message": "Unexpected/invalid field in request",
"code": "invalid_field"
}
]
}