๐Ÿ“„Language and Categories

Matar supports P2P audio conversations in various languages and categories. Get a list of languages and categories via API Endpoints below.

Get All Languages

Get a list of languages by Language ID

Params

Body Parameter โฌ‡๏ธ

Body ParameterData TypeDescription

Bearer {{access_token}} (required)

String

Access token helps secure access to Matar resources.


Sample Request โฌ‡๏ธ๏ธ (Body Parameter)

curl --location 'https://matar.in.ngrok.io/api/v1/languages' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJmcmVzaCI6dHJ1ZSwiaWF0IjoxNjkyODcyNDIxLCJqdGkiOiIyZmNiODJiYi0zMDYzLTQzNGUtOGM5OS00NTVjMDhhY2Y3MmMiLCJ0eXBlIjoiYWNjZXNzIiwic3ViIjoiMzk1MDFUIiwibmJmIjoxNjkyODcyNDIxLCJleHAiOjE2OTM3MzY0MjF9.ovz0ItiPsYG_rqT3vEYl42WZBonX52NXf-oWE4DuGmQ'

Responses โฌ‡๏ธ

Status Code: ๐ŸŸข200 (200 denotes 'ok')

{
    "languages": {
        "hi-IN": "เคนเคฟเค‚เคฆเฅ€",
        "kn-IN": "เฒ•เฒจเณเฒจเฒก",
        "ur-IN": "ุงุฑุฏูˆ",
        "mr-IN": "เคฎเคฐเคพเค เฅ€",
        "ta-IN": "เฎคเฎฎเฎฟเฎดเฏ",
        "te-IN": "เฐคเฑ†เฐฒเฑเฐ—เฑ",
        "en-IN": "English"
    }
}

Status Code: ๐Ÿ”ด404 (404 denotes 'Not found')

{
      "message": "Ain't no cake like that."
}

Response Parameters Description:

In the response, the language code is mapped to the language name which is used in various Matar API endpoints


Get All Categories

Get Question Categories by Category ID for an organization

Params

Query Parameter โฌ‡๏ธ

Body ParameterData TypeDescription

organization_id (required)

String

An organization ID can be fetched via Get all Organizations API endpoint.

Header Parameter โฌ‡๏ธ

Header ParameterData TypeDescription

Bearer {{access_token}} (required)

String

Access token helps secure access to Matar resources.


Sample Request โฌ‡๏ธ๏ธ (Body Parameter)

curl --location 'https://matar.in.ngrok.io/api/v1/categories?organization_id=129487316' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJmcmVzaCI6dHJ1ZSwiaWF0IjoxNjkyODcyNDIxLCJqdGkiOiIyZmNiODJiYi0zMDYzLTQzNGUtOGM5OS00NTVjMDhhY2Y3MmMiLCJ0eXBlIjoiYWNjZXNzIiwic3ViIjoiMzk1MDFUIiwibmJmIjoxNjkyODcyNDIxLCJleHAiOjE2OTM3MzY0MjF9.ovz0ItiPsYG_rqT3vEYl42WZBonX52NXf-oWE4DuGmQ'

Responses โฌ‡๏ธ

Status Code: ๐ŸŸข200 (200 denotes 'ok')

{
    "categories": [
        {
            "_id": "AK9OPI",
            "is_active": true,
            "parent_category_id": null,
            "sort_order": 8,
            "title": "เค•เคพเคฎ เค•เคพเคœ"
        },
        {
            "_id": "B8KIKL",
            "is_active": true,
            "parent_category_id": null,
            "sort_order": 7,
            "title": "เคธเคชเคจเฅ‡ เค”เคฐ เค–เฅเคตเคพเค‡เคถเฅ‡เค‚"
        },
        {
            "_id": "WJ6BWG",
            "is_active": true,
            "parent_category_id": null,
            "sort_order": 6,
            "title": "เคธเฅ‡เคนเคค"
        },
        {
            "_id": "LP4LJ2",
            "is_active": true,
            "parent_category_id": null,
            "sort_order": 5,
            "title": "เค–เคพเคจเคพ เค–เคผเคœเคผเคพเคจเคพ"
        },
        {
            "_id": "KL9WNO",
            "is_active": true,
            "parent_category_id": null,
            "sort_order": 4,
            "title": "เคฎเคจเฅ‹เคฐเค‚เคœเคจ"
        },
        {
            "_id": "P0OKL3",
            "is_active": true,
            "parent_category_id": null,
            "sort_order": 3,
            "title": "เคธเคฌเคธเฅ‡ เคฌเคกเคผเคพ เคฐเฅเคชเคฏเคพ"
        },
        {
            "_id": "ZESAJZ",
            "is_active": true,
            "parent_category_id": null,
            "sort_order": 2,
            "title": "เคธเคฎเคพเคœ"
        },
        {
            "_id": "TFTWNI",
            "is_active": true,
            "parent_category_id": null,
            "sort_order": 1,
            "title": "เค•เฅƒเคทเคฟ"
        }
    ]
}

Response Parameters Description:

Response ParameterDescription

_id

Six-digit alphanumerical ID mapped to a certain question category in an organization.

is_active

Denotes whether the category is active.

parent_category_id

Every sub-category(child) has a parent category id.

sort_order

Order in which categories are sorted and listed.

title

Category Title.

Last updated