Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.31 KB

create-mobile-authorization-code-response.md

File metadata and controls

41 lines (32 loc) · 1.31 KB

Create Mobile Authorization Code Response

Defines the fields that are included in the response body of a request to the CreateMobileAuthorizationCode endpoint.

Structure

Create Mobile Authorization Code Response

Fields

Name Type Tags Description
authorization_code String Optional The generated authorization code that connects a mobile application instance
to a Square account.
Constraints: Maximum Length: 191
expires_at String Optional The timestamp when authorization_code expires, in
RFC 3339 format (for example, "2016-09-04T23:59:33.123Z").
Constraints: Minimum Length: 20, Maximum Length: 48
errors Array<Error Hash> Optional Any errors that occurred during the request.

Example (as JSON)

{
  "authorization_code": "YOUR_MOBILE_AUTHORIZATION_CODE",
  "expires_at": "2019-01-10T19:42:08Z",
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    },
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}