Skip to main content

Reasons Lost

EntityDatastoreDatastore.ReasonLost

Reasons lost provide additional detail on why opportunities were not won.

Use the Datastore_ReasonLost endpoint to query reasons lost.

Endpoints

List Reasons Lost

GET/v1/odata/Datastore_ReasonLost

Single Reasons Lost

GET/v1/odata/Datastore_ReasonLost({id})

Fields

Datastore Fields (inherited)

FieldTypeDescription
NameStringDisplay name
CodeStringUnique code identifier
LocalizedNameStringLocalized display name
IsDefaultBooleanWhether this is the default value

Filtering Examples

GET/v1/odata/Datastore_ReasonLost?$filter=Name eq '{Name}'&$top={top}
GET/v1/odata/Datastore_ReasonLost?$filter=contains(Name, '{Name}')&$top={top}
GET/v1/odata/Datastore_ReasonLost?$filter=Code eq '{Code}'&$top={top}
GET/v1/odata/Datastore_ReasonLost?$filter=IsDefault eq {IsDefault}&$top={top}