OAuth token response from the VWR (Avantor) authorization server. Returned by POST /authorizationserver/oauth/token.
POST /authorizationserver/oauth/token
const token: VWRTokenResponse = { access_token: "PBPYm7hlpLqjKwN4s9H3HRLBNNU", token_type: "bearer", expires_in: 39047, scope: "openid",}; Copy
const token: VWRTokenResponse = { access_token: "PBPYm7hlpLqjKwN4s9H3HRLBNNU", token_type: "bearer", expires_in: 39047, scope: "openid",};
Bearer access token used in the Authorization header of subsequent calls.
Authorization
Token type, always "bearer" for this API.
"bearer"
Lifetime of the token in seconds.
Optional
OAuth scope granted to the token.
OAuth token response from the VWR (Avantor) authorization server. Returned by
POST /authorizationserver/oauth/token.Example