v1

latestOpenAPI 3.0.42026-08-04108409993.8 KB
PropertyRadar

Remove Properties from Portfolio

Removes properties from a portfolio by property id's and/or gnaf id's, returning any id's that did not exist within the portfolio

post/v1/propertyradar/portfolio/{PortfolioId}/property/delete

Path parameters

PortfolioIdstring required

Request body

OR

Example request

{
  "PropertyIds": [
    "AB-2872-NY",
    "RF-8884-AK"
  ],
  "GnafIds": [
    "GAVIC419677979",
    "GANSW710292212"
  ]
}

Response

Existing properties removed successfully, properties not in portfolio returned in response

MissingPropertyIdsstring[]
MissingGnafIdsstring[]

Example response

{
  "MissingPropertyIds": [
    "AA-0000-AA",
    "BB-000-BB"
  ],
  "MissingGnafIds": [
    "AAAA000000000",
    "BBBB000000000"
  ]
}