GET community/get-extra-register-data?community_short_name={community_short_name}

Get the extra register data of a community

Request Information

Headers

HTTP_AUTHORIZATION: Required. OAuth 1.0 parameters with the OAuth signature of the url you are going to request. The consumer keys and access token can be obtained from the community administration.

Sample:
        HTTP_AUTHORIZATION:
            OAuth oauth_token="CObXqjfOisVh9%2F2GjC7NNd8BCzY%3D",
            oauth_consumer_key="clGACsiGaMp%2FD%2BUwkSvRBxA1k50%3D",
            oauth_nonce="VqKza6d5x1HpPQWFe08spbdOnkTQpfaLfD9Oeuyg",
            oauth_signature_method="HMAC-SHA1",
            oauth_timestamp="1462882011",
            oauth_signature="RH5aKKKJaEvK5cIsZZzXtFh7cCk%3D"
    

URI Parameters

NameDescriptionTypeAdditional information
community_short_name

Short name of the community

string

Required

Request Formats

application/x-www-form-urlencoded

Sample:
community_short_name=developers

Response Information

Resource Description

NameDescriptionTypeAdditional information
key

key of the estra register data

globally unique identifier

Required

title

Title

string

Optional

options

Options of the extra register data

Dictionary of globally unique identifier [key] and string [value]

Optional

Response Formats

application/json, text/json

Sample:
[
  {
    "key": "72a9aeb3-7634-445f-b6e6-4d3efa9bf3c9",
    "title": "Educative center"
  },
  {
    "key": "c6e48670-c542-4018-afee-1aeafcc03e2e",
    "title": "Hobbies",
    "options": {
      "cc373331-8df7-4753-af8b-5e92faaa2c91": "Travel",
      "8ec628cd-c796-42f3-a1e3-c8dd7213d4a3": "Football",
      "3e6684e1-4714-4bdf-b0e3-678abeefb271": "Photography",
      "75515dd7-a226-40f5-bd7d-f6f2b96301c4": "Music"
    }
  }
]

Response HTTP status code

On success, the response contains 200 code.

On fail, throws a WebException with code:

  • 401 Unauthorized if the OAuth signature is invalid
  • 400 Bad Request if the params are invalid
  • 500 Internal server error if something goes wrong...