POST api/v1/{providerId}/infrastructure/reminders/{reminderId}/update

Update/Create reminder

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerId

globally unique identifier

Required

reminderId

globally unique identifier

Required

Body Parameters

Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.ReminderVo
NameDescriptionTypeAdditional information
ReminderId

globally unique identifier

None.

Index

integer

None.

ProviderId

globally unique identifier

None.

CreatedDate

date

None.

DueDate

date

None.

Title

string

None.

Description

string

None.

Completed

boolean

None.

Type

Com.Healthbridge.Hhas.Claiming.Interface.ValueObjects.EnumReminderType

None.

References

Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.ReminderReferenceVo

None.

Request Formats

application/json, text/json

Sample:
{
  "ReminderId": "d316588b-9c3e-4159-bd04-f4813af9c433",
  "Index": 2,
  "ProviderId": "9a45bc34-d05c-4692-9a6a-e919458d36e5",
  "CreatedDate": "2025-04-21T03:30:11Z",
  "DueDate": "2025-04-21T03:30:11Z",
  "Title": "sample string 5",
  "Description": "sample string 6",
  "Completed": true,
  "Type": 0,
  "References": [
    {
      "ReferenceId": "sample string 1",
      "Name": "sample string 2",
      "ReferenceType": "sample string 3"
    },
    {
      "ReferenceId": "sample string 1",
      "Name": "sample string 2",
      "ReferenceType": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<ReminderVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
  <Completed>true</Completed>
  <CreatedDate>2025-04-21T03:30:11.6384158+02:00</CreatedDate>
  <Description>sample string 6</Description>
  <DueDate>2025-04-21T03:30:11.6384158+02:00</DueDate>
  <Index>2</Index>
  <ProviderId>9a45bc34-d05c-4692-9a6a-e919458d36e5</ProviderId>
  <References>
    <ReminderReferenceVo>
      <Name>sample string 2</Name>
      <ReferenceId>sample string 1</ReferenceId>
      <ReferenceType>sample string 3</ReferenceType>
    </ReminderReferenceVo>
    <ReminderReferenceVo>
      <Name>sample string 2</Name>
      <ReferenceId>sample string 1</ReferenceId>
      <ReferenceType>sample string 3</ReferenceType>
    </ReminderReferenceVo>
  </References>
  <ReminderId>d316588b-9c3e-4159-bd04-f4813af9c433</ReminderId>
  <Title>sample string 5</Title>
  <Type>Email</Type>
</ReminderVo>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'System.Web.Http.ModelBinding.JQueryMvcFormUrlEncodedFormatter' to write type 'ReminderVo'.

Response Information

Resource Description

Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.Guid
NameDescriptionTypeAdditional information
Sucess

boolean

None.

ResponseCode

integer

None.

ResponseMessage

string

None.

Data

globally unique identifier

None.

Links

Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiLink

None.

Response Formats

application/json, text/json

Sample:
{
  "Sucess": true,
  "ResponseCode": 2,
  "ResponseMessage": "sample string 3",
  "Data": "c4e95b4d-7bd8-465b-bfba-8904d33cc52a",
  "Links": [
    {
      "Rel": "sample string 1",
      "HRef": "sample string 2"
    },
    {
      "Rel": "sample string 1",
      "HRef": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<RestApiResultOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
  <Data>c4e95b4d-7bd8-465b-bfba-8904d33cc52a</Data>
  <Links>
    <RestApiLink>
      <HRef>sample string 2</HRef>
      <Rel>sample string 1</Rel>
    </RestApiLink>
    <RestApiLink>
      <HRef>sample string 2</HRef>
      <Rel>sample string 1</Rel>
    </RestApiLink>
  </Links>
  <ResponseCode>2</ResponseCode>
  <ResponseMessage>sample string 3</ResponseMessage>
  <Sucess>true</Sucess>
</RestApiResultOfguid>