Defines the fields that are included in the response body of
a request to the CreateMobileAuthorizationCode
endpoint.
Create Mobile Authorization Code Response
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, inRFC 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. |
{
"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"
}
]
}