Skip to main content
GET
/
extended_attributes
/
{extended_attribute_id}
/
default-attributes
List all default attributes for a particular extended model
curl --request GET \
  --url http://localhost:3001/portal-api/extended_attributes/{extended_attribute_id}/default-attributes \
  --header 'Authorization: <api-key>'
[
  {
    "AddToKeyMetadata": true,
    "ID": 1,
    "Label": "First Name"
  }
]

Authorizations

Authorization
string
header
required

Path Parameters

extended_attribute_id
integer
required

UID of extended attribute

Example:

1

Query Parameters

limit
integer

Maximum number of records to return for this request. Overrides the row count only, not the page offset (which is always based on per_page), so use per_page for pagination rather than combining limit with page. Defaults to the per_page value.

per_page
integer
default:20

Items per page. Defaults to the resource-specific page count if configured, otherwise 20

page
integer
default:1

Page number. Defaults to 1 when omitted

Response

200 - application/json

OK

AddToKeyMetadata
boolean

If set to true the value for this default attribute will be injected in the credential metadata

Example:

true

ID
integer

UID of this default attribute

Example:

1

Label
string

Name of default attribute field

Example:

"First Name"