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 - REGC and PUBA location change #18459

Closed
mstanton1 opened this issue Nov 3, 2023 · 3 comments
Closed

API - REGC and PUBA location change #18459

mstanton1 opened this issue Nov 3, 2023 · 3 comments
Assignees
Labels

Comments

@mstanton1
Copy link
Collaborator

mstanton1 commented Nov 3, 2023

In addition to the STAT document type, staff can change a location with the PUBA and REGC document types (depending on the reason for the change). Both PUBA and REGC are Swiss army knife registrations where multiple changes can be made (location, owner name and address MH status..). This ticket only covers the PUBA/REGC change of location with an optional note.

Fee codes to be provided when known:
PUBA: MHROT (if clients make a mistake PUBA should be used and a $15.00 fee should be applied)
REGC: CORLC (if staff make a mistake REGC should be used and no charge applied)

Edge Cases: In the current system there are edge cases where even if the client made a mistake no fee is charged. The current fee approach allows staff the option to choose 'No Fee' so for these PUBA scenarios we can request staff choose 'No Fee' and provide guidance in the manual.

  • a location correction to update the registered location is no fee yet done as a PUBA
  • an owner of a home that has a name change or mailing address change is also no fee and done as a PUBA

This ticket does not cover cancelling a transport permit.

@doug-lovett doug-lovett changed the title API - REGC and PUBA API - REGC and PUBA location change Nov 3, 2023
@mstanton1
Copy link
Collaborator Author

@doug-lovett I've confirmed fee code information above.

@doug-lovett
Copy link
Collaborator

doug-lovett commented Nov 4, 2023

Same endpoint as STAT:
DEV POST https://bcregistry-dev.apigee.net/mhr/api/v1/admin-registrations/107856

PUBA payload example:
POST data:
{
"clientReferenceId": "UT-PUBA-002",
"attentionReference": "SUSAN SANCHEZ",
"documentType": "PUBA",
"documentId": "80888294",
"submittingParty": {
"businessName": "ABC SEARCHING COMPANY",
"address": {
"street": "222 SUMMER STREET",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": "V8W 2V8"
},
"emailAddress": "[email protected]"
},
"note": {
"documentType": "PUBA",
"documentId": "80888294",
"remarks": "UT PUBA NOTE"
},
"location": {
"locationType": "MH_PARK",
"parkName": "ELK LAKE PARK",
"pad": "223",
"address": {
"street": "8300 GALLAGHER LK FRONTAGE RD",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": " "
},
"leaveProvince": false,
"taxCertificate": true,
"taxExpiryDate": "2023-12-15T08:01:00+00:00"
}
}

REGC payload example:
POST data:
{
"clientReferenceId": "UT-REGC-001",
"attentionReference": "SUSAN SANCHEZ",
"documentType": "REGC",
"documentId": "80888295",
"submittingParty": {
"businessName": "ABC SEARCHING COMPANY",
"address": {
"street": "222 SUMMER STREET",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": "V8W 2V8"
},
"emailAddress": "[email protected]"
},
"note": {
"documentType": "REGC",
"documentId": "80888295",
"remarks": "UT REGC NOTE"
},
"location": {
"locationType": "MH_PARK",
"parkName": "THETIS LAKE PARK",
"pad": "1223",
"address": {
"street": "8300 GALLAGHER LK FRONTAGE RD",
"city": "VICTORIA",
"region": "BC",
"country": "CA",
"postalCode": " "
},
"leaveProvince": false,
"taxCertificate": true,
"taxExpiryDate": "2023-12-15T08:01:00+00:00"
}
}

@chdivyareddy
Copy link
Collaborator

chdivyareddy commented Nov 8, 2023

Verified in DEV using Postman!

MHR 107855
Private Zenhub Image

TEST: 107289
Private Zenhub 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