You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 7
Next »
Resources
get |
---|
URL | /api/v1/api.php?target=resource&action=get |
Description | Get a resource or resources |
Returns | Examples: SUCCESSFUL: {"success":1,"message":"Search successful","data":[{"id":"57","name":"2nd Email","slug":"6c-contact-email2","type":"field","parent_id":"1","category_id":null,"attr":[]}]} ERROR: {"success":0,"message":"Search failed"} |
Optional Parameters | Name | Type | Notes/Example |
---|
name | STRING | Name of the resource. Example: 6Connect, Inc. | slug | STRING | The unique URL friendly name of the resource. Example: 6connect-inc | type | STRING | Type of resource (eg. entry, field, category) |
At most, one of the following: Name | Type | Notes/Example |
---|
id | INTEGER | Get the resource which has this ID | resource__in | ARRAY | Get the resources which has any of these IDs | resource__not_in | ARRAY | Get all the resources which do not have any of these IDs |
At most, one of the following: Name | Type | Notes/Example |
---|
parent_id | INTEGER | Get resources whose parent has this ID | parent__in | ARRAY | Get resources whose parents have one of these IDs | parent__not_in | ARRAY | Get resources whose parents do not have one of these IDs |
At most, one of the following: Name | Type | Notes/Example |
---|
category_id | INTEGER | Get resources of the category that has this ID | category__in | ARRAY | Get resources of the categories that have one of these IDs | category__not_in | ARRAY | Get resources of the categories that do not have one of these IDs |
You can set the order of the results by setting the STRING value of the parameter orderby to one of the following : - none
- id
- name (default)
- slug
- type
- parent_id
- date
- resource__in (preserve order given in the resource__in array)
You can set the direction of the ordering of the results by setting the STRING value of the parameter order to one of the following : |
Example URL | /api/v1/api.php?target=resource&action=get&id=7 |