Recent searches


No recent searches

Jacob Goldberg's Avatar

Jacob Goldberg

Joined May 21, 2024

·

Last activity May 21, 2024

Following

0

Followers

0

Total activity

3

Votes

0

Subscription

1

ACTIVITY OVERVIEW

Latest activity by Jacob Goldberg

Jacob Goldberg commented,

Community comment Developer - Zendesk APIs

Yes, the custom field ID in the request and the error are the same. I also made sure to put the value tag in the request.

View comment · Posted May 21, 2024 · Jacob Goldberg

0

Followers

0

Votes

0

Comments


Jacob Goldberg created a post,

Post Developer - Zendesk APIs

I am trying to make a new request with the requests API, but am always getting this error:

{"error":"RecordInvalid","description":"Record validation errors","details":{"base":[{"description":"XXX: cannot be blank","error":"BlankValue","field_key":XXXXX}]}}

For some context, here is the request I am submitting to ..

{
    "request": {
        "requester": {
            "name": "Name",
            "email": "email@email.com"
        },
        "comment": {
            "body": "this is a test"
        },
        "subject": "TEST REQUEST - PLEASE IGNORE",
        "custom_fields": [
            {
                "id": "XXXXX",
                "value": "one of the tag values"
            }
        ]
    }
}

The field in question is defined as a drop-down field and is listed as required to solve a ticket. However, I am making sure that the value is one of the tag values specified in the admin but still am getting this error.

Posted May 21, 2024 · Jacob Goldberg

0

Followers

2

Votes

3

Comments