Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API - Update to Restraining Order, Public Note, and Confidential Note unit note fee amount #18138

Closed
mstanton1 opened this issue Oct 11, 2023 · 5 comments
Assignees
Labels

Comments

@mstanton1
Copy link
Collaborator

mstanton1 commented Oct 11, 2023

Restraining Order is currently using a fee code which displays the fee as 20.00 in the UI and Public Note and Confidential Note are showing a fee of 0.00. Through a meeting with policy and staff today we learned that the fee should actually be 15.00.

Fee code: MHROT
Fee amount: 15.00
Description: Filing a record for which no other fee is charged
UI Transaction Description: Other filing charge

Link to fee listing: https://docs.google.com/spreadsheets/d/1gCKVS01eIin4Rcb95_wPYIs__ZeTuW-vz9WBTqwo-VA/edit#gid=616760484

Developer Note:
If a unit note registration is for a document type of REST, NPUB, or NCON, use the fee code MHROT.

@mstanton1 mstanton1 changed the title Update to Restraining Order unit note fee amount Update to Restraining Order, Public Note, and Confidential Note unit note fee amount Oct 11, 2023
@mstanton1 mstanton1 changed the title Update to Restraining Order, Public Note, and Confidential Note unit note fee amount API - Update to Restraining Order, Public Note, and Confidential Note unit note fee amount Oct 12, 2023
@mstanton1
Copy link
Collaborator Author

@doug-lovett doug-lovett self-assigned this Oct 12, 2023
@doug-lovett
Copy link
Collaborator

doug-lovett commented Oct 13, 2023

Unit test DEV account transactions screenshot with new fee attached:
Private Zenhub Image

@chdivyareddy
Copy link
Collaborator

chdivyareddy commented Oct 17, 2023

@doug-lovett , If possible can you please provide the payload to test through postman with the payment options when you have time, thanks!!

@doug-lovett
Copy link
Collaborator

@chdivyareddy you are probably missing the request payment info which is submitted as a request parameter. As an example with MHR 107145 I used:
/mhr/notes/107145?routingSlipNumber=123445678
or bcol
/mhr/notes/107145?bcolAccountNumber=136354&datNumber=C123456

Note document id must be new:
REST request payload example:
{
"clientReferenceId": "UT-NOTE-REST-001",
"attentionReference": "SUSAN SMITH",
"submittingParty": {
"businessName": "ABC SEARCHING COMPANY",
"address": {
"street": "222 SUMMER STREET",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": "V8W 2V8"
},
"emailAddress": "bsmith@abc-search.com"
},
"note": {
"documentType": "REST",
"documentId": "99998265",
"remarks": "REST fee code test.",
"givingNoticeParty": {
"businessName": "TEST GIVING NOTICE COMPANY",
"address": {
"street": "1222 SUMMER STREET",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": "V8W 2V8"
},
"phoneNumber": "2508289999"
}
}
}

NPUB example:
{
"clientReferenceId": "UT-NOTE-NPUB-008",
"attentionReference": "SUSAN SMITH",
"submittingParty": {
"businessName": "ABC SEARCHING COMPANY",
"address": {
"street": "222 SUMMER STREET",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": "V8W 2V8"
},
"emailAddress": "bsmith@abc-search.com"
},
"note": {
"documentType": "NPUB",
"documentId": "99998263",
"remarks": "NPUB fee code test 2.",
"givingNoticeParty": {
"businessName": "TEST GIVING NOTICE COMPANY",
"address": {
"street": "1222 SUMMER STREET",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": "V8W 2V8"
},
"phoneNumber": "2508289999"
}
}
}

NCON example:
{
"clientReferenceId": "UT-NOTE-NCON-001",
"attentionReference": "SUSAN SMITH",
"submittingParty": {
"businessName": "ABC SEARCHING COMPANY",
"address": {
"street": "222 SUMMER STREET",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": "V8W 2V8"
},
"emailAddress": "bsmith@abc-search.com"
},
"note": {
"documentType": "NCON",
"documentId": "99998264",
"remarks": "NCON fee code test.",
"givingNoticeParty": {
"businessName": "TEST GIVING NOTICE COMPANY",
"address": {
"street": "1222 SUMMER STREET",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": "V8W 2V8"
},
"phoneNumber": "2508289999"
}
}
}

@chdivyareddy
Copy link
Collaborator

@doug-lovett Yes, you are right and thank you for correcting me:)

Verified in DEV with MHR 107829.

{
            "description": "Filing a Record for Which No Other Fee is Charged",
            "filingFees": 15.0,
            "futureEffectiveFees": 0.0,
            "gst": 0.0,
            "id": 33749,
            "priorityFees": 0.0,
            "pst": 0.0,
            "quantity": 1,
            "serviceFees": 0.0,
            "statusCode": "ACTIVE",
            "total": 15.0,
            "waivedBy": null,
            "waivedFees": 0.0
        }

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants