-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from daharon/issue-122
Issue #122 custom_fields support for tickets
- Loading branch information
Showing
3 changed files
with
183 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"ticket": { | ||
"url": "https://d3v-terraform-provider.zendesk.com/api/v2/tickets/4.json", | ||
"id": 4, | ||
"external_id": null, | ||
"via": { | ||
"channel": "web", | ||
"source": { | ||
"from": {}, | ||
"to": {}, | ||
"rel": null | ||
} | ||
}, | ||
"created_at": "2019-06-03T02:34:52Z", | ||
"updated_at": "2019-06-03T02:35:05Z", | ||
"type": null, | ||
"subject": "Ticket containing a custom field", | ||
"raw_subject": "Ticket containing a custom field", | ||
"description": "Testing custom field value in a ticket.", | ||
"priority": null, | ||
"status": "solved", | ||
"recipient": null, | ||
"requester_id": 377922500012, | ||
"submitter_id": 377922500012, | ||
"assignee_id": 377922500012, | ||
"organization_id": 360363695492, | ||
"group_id": 360004077472, | ||
"collaborator_ids": [], | ||
"follower_ids": [], | ||
"email_cc_ids": [], | ||
"forum_topic_id": null, | ||
"problem_id": null, | ||
"has_incidents": false, | ||
"is_public": true, | ||
"due_at": null, | ||
"tags": [], | ||
"custom_fields": [ | ||
{ | ||
"id": 360005657120, | ||
"value": "Custom field value for testing" | ||
}, | ||
{ | ||
"id": 360005657121, | ||
"value": ["list", "of", "values"] | ||
} | ||
], | ||
"satisfaction_rating": null, | ||
"sharing_agreement_ids": [], | ||
"fields": [], | ||
"followup_ids": [], | ||
"ticket_form_id": 360000389592, | ||
"brand_id": 360002256672, | ||
"satisfaction_probability": null, | ||
"allow_channelback": false, | ||
"allow_attachments": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters