GET api/Account/GetAssociateDashboard

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

associate_dashboard_response
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

associatepostingDetails

account_posting_response

None.

target_amount

decimal number

None.

acheived_amount

decimal number

None.

share_url

string

None.

target_start_date

date

None.

target_end_date

date

None.

upcomingpostingDetails

pending_approval_posting_response

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "associatepostingDetails": {
    "data": [
      {
        "voucher_date": "2025-12-21T07:55:43.2696783+04:00",
        "voucher_type": "sample string 1",
        "particular": "sample string 2",
        "debit": 3.0,
        "credit": 4.0,
        "balance": 5.0
      },
      {
        "voucher_date": "2025-12-21T07:55:43.2696783+04:00",
        "voucher_type": "sample string 1",
        "particular": "sample string 2",
        "debit": 3.0,
        "credit": 4.0,
        "balance": 5.0
      }
    ],
    "total_debit": 1.0,
    "total_credit": 1.0,
    "total_balance": 1.0
  },
  "target_amount": 3.0,
  "acheived_amount": 4.0,
  "share_url": "sample string 5",
  "target_start_date": "2025-12-21T07:55:43.2696783+04:00",
  "target_end_date": "2025-12-21T07:55:43.2696783+04:00",
  "upcomingpostingDetails": {
    "data": [
      {
        "quot_refno": "sample string 1",
        "ptcoins": 2.0,
        "posting_date": "2025-12-21T07:55:43.2696783+04:00"
      },
      {
        "quot_refno": "sample string 1",
        "ptcoins": 2.0,
        "posting_date": "2025-12-21T07:55:43.2696783+04:00"
      }
    ],
    "total_upcoming_posting": 1.0
  }
}

application/xml, text/xml

Sample:
<associate_dashboard_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <acheived_amount>4</acheived_amount>
  <associatepostingDetails>
    <data>
      <account_posting_details>
        <balance>5</balance>
        <credit>4</credit>
        <debit>3</debit>
        <particular>sample string 2</particular>
        <voucher_date>2025-12-21T07:55:43.2696783+04:00</voucher_date>
        <voucher_type>sample string 1</voucher_type>
      </account_posting_details>
      <account_posting_details>
        <balance>5</balance>
        <credit>4</credit>
        <debit>3</debit>
        <particular>sample string 2</particular>
        <voucher_date>2025-12-21T07:55:43.2696783+04:00</voucher_date>
        <voucher_type>sample string 1</voucher_type>
      </account_posting_details>
    </data>
    <total_balance>1</total_balance>
    <total_credit>1</total_credit>
    <total_debit>1</total_debit>
  </associatepostingDetails>
  <message>sample string 2</message>
  <share_url>sample string 5</share_url>
  <success>true</success>
  <target_amount>3</target_amount>
  <target_end_date>2025-12-21T07:55:43.2696783+04:00</target_end_date>
  <target_start_date>2025-12-21T07:55:43.2696783+04:00</target_start_date>
  <upcomingpostingDetails>
    <data>
      <pending_approval_posting_details>
        <posting_date>2025-12-21T07:55:43.2696783+04:00</posting_date>
        <ptcoins>2</ptcoins>
        <quot_refno>sample string 1</quot_refno>
      </pending_approval_posting_details>
      <pending_approval_posting_details>
        <posting_date>2025-12-21T07:55:43.2696783+04:00</posting_date>
        <ptcoins>2</ptcoins>
        <quot_refno>sample string 1</quot_refno>
      </pending_approval_posting_details>
    </data>
    <total_upcoming_posting>1</total_upcoming_posting>
  </upcomingpostingDetails>
</associate_dashboard_response>