tokens

Create an application access token

Generates an access token that contains permissions scoped to the application owner's Dwolla Client Account.

post/token

Response

successful operation

access_tokenstring required

A new access token that is used to authenticate against resources that belong to the app itself.

token_type'bearer' required

The type of token, always "bearer"

expires_ininteger required

The lifetime of the access token, in seconds. Default is 3600.

Example response

{
  "access_token": "gTm0p62yYXFiB1rOdhV0TsNOinC2V2P1CMaAtojkO9JEGbv3i5",
  "token_type": "bearer",
  "expires_in": 3599
}

Changes