API REFERENCEv1

View Group

GEThttps://api2.protexting.com/v1/groups/view

Pass your server-side token as access_token. Replace sample values with your own. Authentication & setup →

Request parameters:

ParameterDescription
id Group Id

Response parameters:

ParameterDescription
Id Group Id
Name Group name, string, characters count between 3 and 255 symbols
Note Keyword Id, int, if equals to 0 means the group is not a keyword group, otherwise the group is attached to a keyword.
KeywordId Parent Group Id, int, if equals to 0 means the group is a parent group, otherwise the group is a child group which parent group Id is ParentId.
ParentId Parent Group Id, int, if equals to 0 means the group is a parent group, otherwise the group is a child group which parent group Id is ParentId.
DateCreated The date when the record was created, string.
DateUpdated The date when the record was updated, string.
PhoneNumberIds PhoneNumber Ids, array of integers, the Ids of Phone Numbers in the group

Example Request:

Request example
# Set PROTEXTING_ACCESS_TOKEN in your environmentcurl --request GET \  "https://api2.protexting.com/v1/groups/view?id=1&access_token=${PROTEXTING_ACCESS_TOKEN:?Set your API token}" \  --header 'Accept: application/json'
Server-side exampleJSON · HTTPS

Example Response Headers:

Response headers example
Status Code: 200 OK Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Connection: Keep-Alive Content-Length: 272 Content-Type: application/xml; charset=utf-8 Keep-Alive: timeout=5, max=100 Pragma: no-cache X-Powered-By: PHP/5.6.2 X-Rate-Limit-Limit: 60 X-Rate-Limit-Remaining: 59 X-Rate-Limit-Reset: 0

Example Response Body:

JSON response example
{
        "Id": 1,
        "Name": "Sweeps winners from Feb 1, 2015",
        "Note": "Reminder: Send message to all members of the group to tell them they're winners",
        "KeywordId": 0,
        "ParentId": 0,
        "DateCreated": "2015-01-20 10:21:29",
        "DateUpdated": "2015-01-20 10:41:29",
        "PhoneNumberIds": [1,2]
}
XML response example
<response>   <item>      <Id>1</Id>      <Name>Sweeps winners from Feb 1, 2015</Name>      <Note>Reminder: Send message to all members of the group to tell them they're winners</Note>      <KeywordId>0</KeywordId>      <ParentId>0</ParentId>      <DateCreated>2015-01-20 10:21:29</DateCreated>      <DateUpdated>2015-01-20 10:41:29</DateUpdated>      <PhoneNumberIds>         <item>1</item>         <item>2</item>      </PhoneNumberIds>   </item></response>

HTTP Status Codes:

The standard HTTP Status Codes are used. More information is available here: http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml

Error Codes:

Error Codes and Examples here »

Reference from the ProTexting documentation catalog. Code examples are illustrative; this page does not execute API requests.