Open
Description
userSocialIdResult and newAccountDefinition have a field name "socialAccountInformation" that references "#/definitions/UserSocialAccountLogins". This object does not exist.
"newAccountDefinition": {
"type": "object",
"properties": {
...
"socialAccountInformation": {
"$ref": "#/definitions/UserSocialAccountLogins",
"description": "Contains properties that map a DocuSign user to a social account (Facebook, Yahoo, etc.)"
}
}
"userSocialIdResult": {
"type": "object",
"properties": {
"socialAccountInformation": {
"description": "Contains properties that map a DocuSign user to a social account (Facebook, Yahoo, etc.)",
"type": "array",
"items": {
"$ref": "#/definitions/UserSocialAccountLogins"
}
},
"userId": {
"description": "The ID of the user to access. Generally this is the ID of the current authenticated user, but if the authenticated user is an Administrator on the account, `userId` can represent another user whom the Administrator is accessing.\n",
"type": "string"
}
},
I noticed that there is a "socialAccountInformation" object that is not referenced by any other object. Is that the correct type for the fields?
"witness" object contains the field "offlineAttributes" with a reference of "#/definitions/offlineAttributes" which does not exist.
"witness": {
"type": "object",
"properties": {
...
"offlineAttributes": {
"$ref": "#/definitions/offlineAttributes",
"description": "Reserved for DocuSign use. "
},