Category
Value
Description
Get transfer categories
Create transfer categories
Update transfer categories
Delete transfer categories
Last updated
Last updated
GET /api/v1/dictionary/payment/category HTTP/1.1
Accept: */*
{
"categories": [
{
"created_at": "text",
"deleted_at": "text",
"description": "text",
"guid": "text",
"name": "text",
"updated_at": "text"
}
]
}POST /api/v1/dictionary/payment/category HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"description": "text",
"name": "text"
}{
"guid": "text"
}PUT /api/v1/dictionary/payment/category/{category_guid} HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"description": "text",
"name": "text"
}{}DELETE /api/v1/dictionary/payment/category/{category_guid} HTTP/1.1
Accept: */*
{}