> For the complete documentation index, see [llms.txt](https://docs-staging.billeasy.in/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-staging.billeasy.in/customer-mobile-app/faq-sub-categories-id.md).

# Faq sub-categories/{id}

## Get Cakes

<mark style="color:blue;">`GET`</mark> `https://staging.billeasy.in/api/   customers/faqsubcategories/{id}`&#x20;

This endpoint allows you to get free cakes.

#### Path Parameters

| Name | Type   | Description                                |
| ---- | ------ | ------------------------------------------ |
| id   | string | ID of the cake to get, for free of course. |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{
  "success": true,
  "msg": "true msg.",
  "data": [
    {
      "attributes": {
        "a_ans": "If you have recieved a bill that does not belong to you, simply delete the bill so that it does affect your expenses.",
        "q_name": "A bill I received does not belong to me?"
      },
      "id": 1
    },
    {
      "attributes": {
        "a_ans": "A change in the name of the items in your bill will only come about if the store decides to change the name of the item.",
        "q_name": "The name of items in my bill is different from the previous one"
      },
      "id": 2
    }
  ]
}
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
{   
"success":false, 
"msg": "false msg.",
"data":[]
}
```

{% endtab %}
{% endtabs %}
