query

faq

Get a specific FAQ using its slug identifier.
Arguments
Required
A short, human-readable, URL-friendly identifier of an FAQ. You can get slug value from the endpoint /service/application/content/v1.0/faq.
Response
Unique identifier of an entry.
answer
String
The contents of a answer of a FAQ.
application
String
Application ID - Identifier for a Sales channel.
question
String
The contents of a question of a FAQ.
slug
String
A short, human-readable, URL-friendly identifier.
Tags under a FAQ.
Query
1query faq($slug: String!) {
2 faq(slug: $slug) {
3 id
4 answer
5 application
6 question
7 slug
8 tags
9 }
10}
Try it
Input Variables
1{
2 "slug": "slug"
3}
Response
1{
2 "faq": {
3 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
4 "answer": "answer",
5 "application": "application",
6 "question": "question",
7 "slug": "slug",
8 "tags": [
9 "tags"
10 ]
11 }
12}