Trying to test https://bcregistry-sandbox.apigee.net/strr/v1/permits/:validatePermit
, based on example on API docs page: ValidatePermit | strr
Either through Postman or curl, my request is identical to the example provided on that page:
curl --location 'https://bcregistry-sandbox.apigee.net/strr/v1/permits/:validatePermit' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --header 'x-apikey: OUR_API_KEY' \ --data '{ "identifier": "H1234567", "address": { "unitNumber": "23a", "streetNumber": "721", "streetName": "Test St", "city": "Test city", "province": "BC", "country": "CA", "postalCode": "H0H0H0" } }'
Yet I always get the following response:
{ "fault": { "faultstring": "Unable to identify proxy for host: secure and url: /strr/v1/permits/:validatePermit", "detail": { "errorcode": "messaging.adaptors.http.flow.ApplicationNotFound" } } }
Please advise.