Authentication
A JWT token encoded using your Accounts API Key Shared Secret.
asd8asd9f87ass...asdf9A JSON object which contains the access_token to use in all subsequent calls to the API
Access Token (JWT)
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuMSeconds until the Access Token expires
86400Seconds until the Refresh Token expires
86400Refresh Token (JWT)
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuMType of JWT token. Will always be "bearer"
bearerID Token (JWT)
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuMSeconds until the Token will be considered valid. Will always be 0 (now).
0Unique Session ID
9b4b13d7-c7a6-4f68-a419-cf1bf5aef94fApplication Scopes
openid email app_metadata user_metadata profileMissing or invalid credentials
Not Found
Unknown Error Occurred
POST /api/v1/auth/token HTTP/1.1
Host: api.netography.com
Content-Type: application/json
Accept: */*
Content-Length: 32
{
"jwt": "asd8asd9f87ass...asdf9"
}{
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuM",
"expires_in": 86400,
"refresh_expires_in": 86400,
"refresh_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuM",
"token_type": "bearer",
"id_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuM",
"not-before-policy": 0,
"session-state": "9b4b13d7-c7a6-4f68-a419-cf1bf5aef94f",
"scope": "openid email app_metadata user_metadata profile"
}me@email.comA JSON object which contains the access_token to use in all subsequent calls to the API
Access Token (JWT)
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuMSeconds until the Access Token expires
86400Seconds until the Refresh Token expires
86400Refresh Token (JWT)
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuMType of JWT token. Will always be "bearer"
bearerID Token (JWT)
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuMSeconds until the Token will be considered valid. Will always be 0 (now).
0Unique Session ID
9b4b13d7-c7a6-4f68-a419-cf1bf5aef94fApplication Scopes
openid email app_metadata user_metadata profileMissing or invalid credentials
Unknown Error Occurred
POST /api/auth/bearer/token HTTP/1.1
Host: api.netography.com
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 49
"username='me@email.com'&password='password'"{
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuM",
"expires_in": 86400,
"refresh_expires_in": 86400,
"refresh_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuM",
"token_type": "bearer",
"id_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuM",
"not-before-policy": 0,
"session-state": "9b4b13d7-c7a6-4f68-a419-cf1bf5aef94f",
"scope": "openid email app_metadata user_metadata profile"
}eyJhbGciOiJIUzI1NiIsInR5c...jUZ8Ud9wGCYilcqEML2fRkWZUA JSON object which contains the access_token to use in all subsequent calls to the API
Access Token (JWT)
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuMSeconds until the Access Token expires
86400Seconds until the Refresh Token expires
86400Refresh Token (JWT)
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuMType of JWT token. Will always be "bearer"
bearerID Token (JWT)
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuMSeconds until the Token will be considered valid. Will always be 0 (now).
0Unique Session ID
9b4b13d7-c7a6-4f68-a419-cf1bf5aef94fApplication Scopes
openid email app_metadata user_metadata profileWrong or expired refresh token, or user/api-key removed
Unknown Error Occurred
POST /api/auth/bearer/refresh HTTP/1.1
Host: api.netography.com
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 73
"refresh_token='eyJhbGciOiJIUzI1NiIsInR5c...jUZ8Ud9wGCYilcqEML2fRkWZU'"{
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuM",
"expires_in": 86400,
"refresh_expires_in": 86400,
"refresh_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuM",
"token_type": "bearer",
"id_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI....KpQXk3fiwnSbREHlvfdi7weWuM",
"not-before-policy": 0,
"session-state": "9b4b13d7-c7a6-4f68-a419-cf1bf5aef94f",
"scope": "openid email app_metadata user_metadata profile"
}Last updated