All URIs are relative to https://api.ynab.com/v1
| Method | HTTP request | Description |
|---|---|---|
| create_category | POST /plans/{plan_id}/categories | Create a category |
| create_category_group | POST /plans/{plan_id}/category_groups | Create a category group |
| get_categories | GET /plans/{plan_id}/categories | Get all categories |
| get_category_by_id | GET /plans/{plan_id}/categories/{category_id} | Get a category |
| get_month_category_by_id | GET /plans/{plan_id}/months/{month}/categories/{category_id} | Get a category for a specific plan month |
| update_category | PATCH /plans/{plan_id}/categories/{category_id} | Update a category |
| update_category_group | PATCH /plans/{plan_id}/category_groups/{category_group_id} | Update a category group |
| update_month_category | PATCH /plans/{plan_id}/months/{month}/categories/{category_id} | Update a category for a specific month |
SaveCategoryResponse create_category(plan_id, data)
Create a category
Creates a new category
- Bearer Authentication (bearer):
import ynab
from ynab.models.post_category_wrapper import PostCategoryWrapper
from ynab.models.save_category_response import SaveCategoryResponse
from ynab.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.ynab.com/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = ynab.Configuration(
host = "https://api.ynab.com/v1"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: bearer
configuration = ynab.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with ynab.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ynab.CategoriesApi(api_client)
plan_id = 'plan_id_example' # str | The id of the plan (\"last-used\" can be used to specify the last used plan and \"default\" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan)
data = ynab.PostCategoryWrapper() # PostCategoryWrapper | The category to create.
try:
# Create a category
api_response = api_instance.create_category(plan_id, data)
print("The response of CategoriesApi->create_category:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling CategoriesApi->create_category: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| plan_id | str | The id of the plan ("last-used" can be used to specify the last used plan and "default" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan) | |
| data | PostCategoryWrapper | The category to create. |
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 201 | The category was successfully created | - |
| 400 | The request could not be understood due to malformed syntax or validation error(s). | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SaveCategoryGroupResponse create_category_group(plan_id, data)
Create a category group
Creates a new category group
- Bearer Authentication (bearer):
import ynab
from ynab.models.post_category_group_wrapper import PostCategoryGroupWrapper
from ynab.models.save_category_group_response import SaveCategoryGroupResponse
from ynab.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.ynab.com/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = ynab.Configuration(
host = "https://api.ynab.com/v1"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: bearer
configuration = ynab.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with ynab.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ynab.CategoriesApi(api_client)
plan_id = 'plan_id_example' # str | The id of the plan (\"last-used\" can be used to specify the last used plan and \"default\" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan)
data = ynab.PostCategoryGroupWrapper() # PostCategoryGroupWrapper | The category group to create.
try:
# Create a category group
api_response = api_instance.create_category_group(plan_id, data)
print("The response of CategoriesApi->create_category_group:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling CategoriesApi->create_category_group: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| plan_id | str | The id of the plan ("last-used" can be used to specify the last used plan and "default" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan) | |
| data | PostCategoryGroupWrapper | The category group to create. |
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 201 | The category group was successfully created | - |
| 400 | The request could not be understood due to malformed syntax or validation error(s). | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CategoriesResponse get_categories(plan_id, last_knowledge_of_server=last_knowledge_of_server)
Get all categories
Returns all categories grouped by category group. Amounts (assigned, activity, available, etc.) are specific to the current plan month (UTC).
- Bearer Authentication (bearer):
import ynab
from ynab.models.categories_response import CategoriesResponse
from ynab.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.ynab.com/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = ynab.Configuration(
host = "https://api.ynab.com/v1"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: bearer
configuration = ynab.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with ynab.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ynab.CategoriesApi(api_client)
plan_id = 'plan_id_example' # str | The id of the plan. \"last-used\" can be used to specify the last used plan and \"default\" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan).
last_knowledge_of_server = 56 # int | The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included. (optional)
try:
# Get all categories
api_response = api_instance.get_categories(plan_id, last_knowledge_of_server=last_knowledge_of_server)
print("The response of CategoriesApi->get_categories:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling CategoriesApi->get_categories: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| plan_id | str | The id of the plan. "last-used" can be used to specify the last used plan and "default" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan). | |
| last_knowledge_of_server | int | The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included. | [optional] |
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | The categories grouped by category group | - |
| 404 | No categories were found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CategoryResponse get_category_by_id(plan_id, category_id)
Get a category
Returns a single category. Amounts (assigned, activity, available, etc.) are specific to the current plan month (UTC).
- Bearer Authentication (bearer):
import ynab
from ynab.models.category_response import CategoryResponse
from ynab.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.ynab.com/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = ynab.Configuration(
host = "https://api.ynab.com/v1"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: bearer
configuration = ynab.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with ynab.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ynab.CategoriesApi(api_client)
plan_id = 'plan_id_example' # str | The id of the plan. \"last-used\" can be used to specify the last used plan and \"default\" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan).
category_id = 'category_id_example' # str | The id of the category
try:
# Get a category
api_response = api_instance.get_category_by_id(plan_id, category_id)
print("The response of CategoriesApi->get_category_by_id:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling CategoriesApi->get_category_by_id: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| plan_id | str | The id of the plan. "last-used" can be used to specify the last used plan and "default" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan). | |
| category_id | str | The id of the category |
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | The requested category | - |
| 404 | The category was not found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CategoryResponse get_month_category_by_id(plan_id, month, category_id)
Get a category for a specific plan month
Returns a single category for a specific plan month. Amounts (assigned, activity, available, etc.) are specific to the current plan month (UTC).
- Bearer Authentication (bearer):
import ynab
from ynab.models.category_response import CategoryResponse
from ynab.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.ynab.com/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = ynab.Configuration(
host = "https://api.ynab.com/v1"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: bearer
configuration = ynab.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with ynab.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ynab.CategoriesApi(api_client)
plan_id = 'plan_id_example' # str | The id of the plan. \"last-used\" can be used to specify the last used plan and \"default\" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan).
month = '2013-10-20' # date | The plan month in ISO format (e.g. 2016-12-01) (\"current\" can also be used to specify the current calendar month (UTC))
category_id = 'category_id_example' # str | The id of the category
try:
# Get a category for a specific plan month
api_response = api_instance.get_month_category_by_id(plan_id, month, category_id)
print("The response of CategoriesApi->get_month_category_by_id:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling CategoriesApi->get_month_category_by_id: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| plan_id | str | The id of the plan. "last-used" can be used to specify the last used plan and "default" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan). | |
| month | date | The plan month in ISO format (e.g. 2016-12-01) ("current" can also be used to specify the current calendar month (UTC)) | |
| category_id | str | The id of the category |
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | The requested month category | - |
| 404 | The month category was not was found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SaveCategoryResponse update_category(plan_id, category_id, data)
Update a category
Update a category
- Bearer Authentication (bearer):
import ynab
from ynab.models.patch_category_wrapper import PatchCategoryWrapper
from ynab.models.save_category_response import SaveCategoryResponse
from ynab.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.ynab.com/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = ynab.Configuration(
host = "https://api.ynab.com/v1"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: bearer
configuration = ynab.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with ynab.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ynab.CategoriesApi(api_client)
plan_id = 'plan_id_example' # str | The id of the plan. \"last-used\" can be used to specify the last used plan and \"default\" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan).
category_id = 'category_id_example' # str | The id of the category
data = ynab.PatchCategoryWrapper() # PatchCategoryWrapper | The category to update
try:
# Update a category
api_response = api_instance.update_category(plan_id, category_id, data)
print("The response of CategoriesApi->update_category:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling CategoriesApi->update_category: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| plan_id | str | The id of the plan. "last-used" can be used to specify the last used plan and "default" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan). | |
| category_id | str | The id of the category | |
| data | PatchCategoryWrapper | The category to update |
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | The category was successfully updated | - |
| 400 | The request could not be understood due to malformed syntax or validation error(s) | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SaveCategoryGroupResponse update_category_group(plan_id, category_group_id, data)
Update a category group
Update a category group
- Bearer Authentication (bearer):
import ynab
from ynab.models.patch_category_group_wrapper import PatchCategoryGroupWrapper
from ynab.models.save_category_group_response import SaveCategoryGroupResponse
from ynab.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.ynab.com/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = ynab.Configuration(
host = "https://api.ynab.com/v1"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: bearer
configuration = ynab.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with ynab.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ynab.CategoriesApi(api_client)
plan_id = 'plan_id_example' # str | The id of the plan. \"last-used\" can be used to specify the last used plan and \"default\" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan).
category_group_id = 'category_group_id_example' # str | The id of the category group
data = ynab.PatchCategoryGroupWrapper() # PatchCategoryGroupWrapper | The category group to update
try:
# Update a category group
api_response = api_instance.update_category_group(plan_id, category_group_id, data)
print("The response of CategoriesApi->update_category_group:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling CategoriesApi->update_category_group: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| plan_id | str | The id of the plan. "last-used" can be used to specify the last used plan and "default" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan). | |
| category_group_id | str | The id of the category group | |
| data | PatchCategoryGroupWrapper | The category group to update |
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | The category group was successfully updated | - |
| 400 | The request could not be understood due to malformed syntax or validation error(s) | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SaveCategoryResponse update_month_category(plan_id, month, category_id, data)
Update a category for a specific month
Update a category for a specific month. Only budgeted (assigned) amount can be updated.
- Bearer Authentication (bearer):
import ynab
from ynab.models.patch_month_category_wrapper import PatchMonthCategoryWrapper
from ynab.models.save_category_response import SaveCategoryResponse
from ynab.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.ynab.com/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = ynab.Configuration(
host = "https://api.ynab.com/v1"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: bearer
configuration = ynab.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with ynab.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ynab.CategoriesApi(api_client)
plan_id = 'plan_id_example' # str | The id of the plan. \"last-used\" can be used to specify the last used plan and \"default\" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan).
month = '2013-10-20' # date | The plan month in ISO format (e.g. 2016-12-01) (\"current\" can also be used to specify the current calendar month (UTC))
category_id = 'category_id_example' # str | The id of the category
data = ynab.PatchMonthCategoryWrapper() # PatchMonthCategoryWrapper | The category to update. Only `budgeted` (assigned) amount can be updated and any other fields specified will be ignored.
try:
# Update a category for a specific month
api_response = api_instance.update_month_category(plan_id, month, category_id, data)
print("The response of CategoriesApi->update_month_category:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling CategoriesApi->update_month_category: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| plan_id | str | The id of the plan. "last-used" can be used to specify the last used plan and "default" can be used if default plan selection is enabled (see: https://api.ynab.com/#oauth-default-plan). | |
| month | date | The plan month in ISO format (e.g. 2016-12-01) ("current" can also be used to specify the current calendar month (UTC)) | |
| category_id | str | The id of the category | |
| data | PatchMonthCategoryWrapper | The category to update. Only `budgeted` (assigned) amount can be updated and any other fields specified will be ignored. |
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | The month category was successfully updated | - |
| 400 | The request could not be understood due to malformed syntax or validation error(s) | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]