GET
/
entities
/
:ent_id
/
attributes
curl "https://production.methodfi.com/entities/ent_yVf3mkzbhz9tj/attributes" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "attr_nrPjaahMX4yRA",
      "entity_id": "ent_BzirqpLEm3BW7",
      "status": "completed",
      "attributes": {
        "credit_health_credit_card_usage": {
          "value": 22,
          "rating": "good"
        },
        "credit_health_derogatory_marks": {
          "value": 1,
          "rating": "fair"
        },
        "credit_health_hard_inquiries": {
          "value": 1,
          "rating": "fair"
        },
        "credit_health_total_accounts": {
          "value": 15,
          "rating": "fair"
        },
        "credit_health_credit_age": {
          "value": 42,
          "rating": "needs_work"
        },
        "credit_health_payment_history": {
          "value": 100,
          "rating": "excellent"
        },
        "credit_health_open_accounts": {
          "value": 10,
          "rating": "no_rating"
        },
        "credit_health_entity_delinquent": {
          "value": true,
          "rating": "no_rating",
          "metadata": {
            "delinquent_account_ids": [
              "acc_4xJ38CQy3mNRr",
              "acc_NMi7FhTJYeBYy"
            ]
          }
        }
      },
      "error": null,
      "created_at": "2024-09-09T00:16:44.838Z",
      "updated_at": "2024-09-09T00:16:44.838Z"
    },
    {...}
  ],
  "message": null
}

Retrieve a list of Attributes for a specific Entity.

Path Parameters

ent_id
string
required

ID of the Entity.

Query Parameters

from_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Attributes created on and after the date provided.

to_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Attributes created on and before the date provided.

page
string

The number of the page to return.

page_cursor
string

The ID of a resource from which a page should start or end. Mutually exclusive with page.

page_limit
string

The number of Attributes to return per page.

Returns

Returns a list of Attributes.

curl "https://production.methodfi.com/entities/ent_yVf3mkzbhz9tj/attributes" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "attr_nrPjaahMX4yRA",
      "entity_id": "ent_BzirqpLEm3BW7",
      "status": "completed",
      "attributes": {
        "credit_health_credit_card_usage": {
          "value": 22,
          "rating": "good"
        },
        "credit_health_derogatory_marks": {
          "value": 1,
          "rating": "fair"
        },
        "credit_health_hard_inquiries": {
          "value": 1,
          "rating": "fair"
        },
        "credit_health_total_accounts": {
          "value": 15,
          "rating": "fair"
        },
        "credit_health_credit_age": {
          "value": 42,
          "rating": "needs_work"
        },
        "credit_health_payment_history": {
          "value": 100,
          "rating": "excellent"
        },
        "credit_health_open_accounts": {
          "value": 10,
          "rating": "no_rating"
        },
        "credit_health_entity_delinquent": {
          "value": true,
          "rating": "no_rating",
          "metadata": {
            "delinquent_account_ids": [
              "acc_4xJ38CQy3mNRr",
              "acc_NMi7FhTJYeBYy"
            ]
          }
        }
      },
      "error": null,
      "created_at": "2024-09-09T00:16:44.838Z",
      "updated_at": "2024-09-09T00:16:44.838Z"
    },
    {...}
  ],
  "message": null
}