Skip to main content
GET
/
extended_attributes
List all extended models
curl --request GET \
  --url http://localhost:3001/portal-api/extended_attributes \
  --header 'Authorization: <api-key>'
[
  {
    "ID": 1,
    "ModelName": "User",
    "LastUpdatedBy": "John Smith - john@tyk.io",
    "UpdatedAt": "2023-06-25 13:37"
  }
]

Authorizations

Authorization
string
header
required

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

ID
integer

UID of this extended attribute

Example:

1

ModelName
string

Name of the model for which the custom attributes are extended

Example:

"User"

LastUpdatedBy
string

User that made the last update of one of the custom attributes for the extended model

Example:

"John Smith - john@tyk.io"

UpdatedAt
string

Timestamp of the last update

Pattern: ^\d{4}-\d{2}-\d{2} \d{2}:\d{2}$
Example:

"2023-06-25 13:37"