View your resource types, access to resource types is controlled by two mechanisms, public status and whether you are permitted user.
If a resource type is set to ‘public’ everyone has read access. Write access to a resource and all the dependant routes and endpoints are limited to the permitted users.
The user that creates a resource type is the permitted user, the API allows there to be multiple permitted users per resource type, assigned via the permitted users endpoint.
URL : /v3/resource-types/
Method : GET
Parameters :
Parameter | Type | Default | Description | Example | |
---|---|---|---|---|---|
collection | boolean | false | Override pagination and return the entire collection | collection=true | |
limit | integer | 25 | Limit the collection | limit=25 | |
offset | integer | 0 | Limit offset | offset=0 | |
search | string | Search collection fields | search=field1:partial_search_term | field2:partial_search_term | |
sort | string | Sort collection | sort=field1:asc | field2:desc | |
item-type | string | Filter by itype type | item-type=2AP1axw6L7 |
Code : 200 OK
Content :
[
{
"id": "d185Q15grY",
"name": "Blackborough boys",
"description": "The Blackborough children, Jack and Niall",
"data": null,
"created": "2018-09-06 22:04:23",
"public": true,
"item_type": {
"uri": "/v3/item-types/OqZwKX16bW",
"id": "OqZwKX16bW",
"name": "allocated-expense",
"description": "Expenses with an allocation rate"
},
"resources": {
"uri": "/v3/resource-types/Z9YJMxawpG/resources",
"count": 2
}
}
]