CreateMandateRequest
Request model for creating a new mandate.
- nameType: stringmin length:1max length:200required
- categoriesType: array object[] | null · CreateMandateCategoryRequest[]
Mandate category entry (POST create + PATCH update). Categories are replace-all on PATCH — partial-by-id semantics are not supported because the category list is small and the contained ranges are independently optional.
- typeType: stringrequired
Asset type token. Either a recognised top-level category (e.g.
office) or slash-notationcategory/subtypewhere both halves are recognised and the subtype belongs to the declared base (e.g.retail/shopping_mall). Empty halves, unknown tokens, and mixed-base pairs return 400 with the accepted base-type list in the error message. - leasableType: object · AreaRange nullable
Units Leasable units (area) range.
- locationType: array string[] | null
Classes Allowed location classes for this category (A | B | C).
- rentType: object · PriceRange nullable
Per Unit Target rent per unit (currency-bearing).
- vacancyType: object · PercentRange nullable
Rate Acceptable vacancy rate range.
- yieldType: object · PercentRange nullable
Percent Target yield percentage range.
- countryType: null | string
- descriptionType: null | string
- externalType: array object[] | null · ExternalRef[] …10
Refs Represents an external system reference (e.g., Salesforce, HubSpot, Pipedrive). Supports multiple CRM systems simultaneously.
- idType: stringmax length:255required
External identifier within the namespace (e.g., "003XXXXXXXXXXXX" for Salesforce). Case-sensitive. Format depends on the external system.
- namespaceType: stringmax length:50required
External system namespace (e.g., "salesforce", "hubspot", "pipedrive", "csv-import"). Case-insensitive.
- geographynullable
GeoJSON Polygon/MultiPolygon (WGS84, [lng, lat]). Mutually exclusive with near+radius and location.
- investmentType: object · PriceRange nullable
Size Price as a
min/maxrange, with currency and scale.- currencyType: stringmin length:3max length:3required
ISO 4217 currency code (e.g., "EUR", "SEK", "USD").
- maxType: null | number | string
Pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?$Format: doublemin:0Maximum price. Multiply by scale factor to get actual amount. Example: max=200 with scale="millions" = 200 million. Omit for an open-ended lower-bounded range.
- minType: null | number | string
Pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?$Format: doublemin:0Minimum price. Multiply by scale factor to get actual amount. Example: min=100 with scale="millions" = 100 million. Omit for an open-ended upper-bounded range.
- scaleType: string
Scale factor for the values: "none" (1), "thousands" (1,000), "millions" (1,000,000), "billions" (1,000,000,000). Default is "none" if not specified on input.
- locationType: null | string
- nearType: object · MandateNearRequest nullable
Point coordinates for near-field search on the mandates V1 routes. Shared by the PATCH update body, the POST create request, and the POST search request.
- latitudeType: null | number | string
Pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?$Format: doubleLatitude (WGS84). Required when
nearis specified. - longitudeType: null | number | string
Pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?$Format: doubleLongitude (WGS84). Required when
nearis specified.
- negativeType: array string[] | null
Tags - parcelType: object · AreaRange nullable
Area Area as a
min/maxrange. Values are in square meters.- maxType: null | number | string
Pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?$Format: doublemin:0Maximum area (sqm). Omit for an open-ended lower-bounded range.
- minType: null | number | string
Pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?$Format: doublemin:0Minimum area (sqm). Omit for an open-ended upper-bounded range.
- positiveType: array string[] | null
Tags - radiusType: null | integer | string
Pattern: ^-?(?:0|[1-9]\d*)$Format: int32 - yearType: object · YearRange nullable
Built Calendar year as a
min/maxrange (e.g. 1990–2005). Years are expressed as full integer years (CE / Common Era).- maxType: null | integer | string
Pattern: ^-?(?:0|[1-9]\d*)$Format: int32Latest year in the range (e.g. 2005). Omit for an open-ended lower-bounded range.
- minType: null | integer | string
Pattern: ^-?(?:0|[1-9]\d*)$Format: int32Earliest year in the range (e.g. 1990). Omit for an open-ended upper-bounded range.