Fanclubs

This resource shows details about the fanclub

GET /fanclub

List all details of your fanclub

Request

No parameters required (besides your API key of course).

Responses

Success

{
    "status": "ok",
    "fanclub": {
        "name": "Space Fanclub",
        "site_url": "http://www.fanclub.com",
        "authentications": [ // Will be an empty array if no 3rd party authentication methods are enabled
            {
                "name": "facebook",
                "app_id": "142161757351",
                "login_path": "/facebook_login"
            },
            {
                "name": "twitter",
                "app_id": "90812347981",
                "login_path": "/twitter_login"
            }
        ],
        "links": {
            "site": "http://www.space-fanclub.com",
            "login": "https://services.sparkart.net/1/login",
            "logout": "https://services.sparkart.net/1/logout",
            "password_reset": "https://services.sparkart.net/1/password_reset/new",
            "saved_card": "https://services.sparkart.net/1/saved_card",
            "redeem": "https://services.sparkart.net/1/redeem",
            // The following two key-values will not be included if IP.Board integration is disabled
            "forum": "https://services.sparkart.net/1/forum", // URL will redirect to IP.Board URL below if current user has access or prompt user to login or join
            "ipboard": "http://sparkart.invisionzone.com?start_sso=1", // URL to automatically sign in users to the forum
            "legals": {
                "privacy": "https://services.sparkart.net/legal/privacy",
                "terms": "https://services.sparkart.net/legal/terms"
            }
        },
        "tracking": {
            "development": {
                "google_analytics": ['UA-123477-1'] // Will be an empty array if fanclub has no associated Google Analytics account -- this was kept an array for consistency but will only ever have one item
            },
            "production": {
                "google_analytics": ['UA-123456-1', 'UA-098765-4'] // Will be an empty array if fanclub has no associated Google Analytics account
            }
        }
    }
}