{
    "name": "Nimble",
    "desc": "Social CRM Simplified",
    "url": "https://api.nimble.com/oauth",
    "oauth2": {
        "authorize": {
          "url": "/authorize",
          "query": {
            "redirect_uri": "{{callback}}",
            "response_type": "code",
            "state": "{{state}}",
            "client_id": "{client_id}"
          }
        },
        "access_token": {
          "url": "/token",
          "method": "post",
          "format": "json",
          "query": {
            "grant_type": "authorization_code",
            "code": "{{code}}",
            "client_id": "{client_id}",
            "client_secret": "{client_secret}",
            "redirect_uri": "{{callback}}",
            "state": "{{state}}"
          }
        },
        "request": "https://api.nimble.com/oauth",
        "refresh": "/token",
        "parameters": {
            "client_id": "string",
            "client_secret": "string",
            "scope": {
                "values": {}
            }
        }
    },
    "href": {
        "docs": "https://nimble.readthedocs.org/",
        "provider": "https://www.nimble.com"
    }
}
