GET v1/application/button-type/{id}
Use this method to get the structure and details of a single button type.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Unique identifier of the button type to return. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns a button type object.
ButtonTypeName | Description | Type | Additional information |
---|---|---|---|
id |
The button type unique identifier. Null if the button type is a template for creating button types. |
string |
None. |
type |
The most important value, and what the client sdks evaluate to identify a button type |
integer |
None. |
internalName |
The internal name is used through logical paths to identify certain features needed to be shown/hidden. Is not required but very important that a button type is given an internal name. |
string |
None. |
name |
User friendly button type display name. |
string |
None. |
platforms | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": "sample string 1", "type": 2, "internalName": "sample string 3", "name": "sample string 4", "platforms": [ "sample string 1", "sample string 2" ] }