I have developed an unbound custom action. At this point it does nothing more than set and return a string argument. I can see the action in the $metadata file.
<ComplexType Name="sos_GetJobByPOResponse">
<Property Name="PurchaseOrder" Type="Edm.String" Nullable="false" Unicode="false"/>
</ComplexType>
<Action Name="sos_GetJobByPO">
<ReturnType Type="mscrm.scs_GetJobByPOResponse" Nullable="false"/>
</Action>
When I call the action through a web api call - https://[my instance].api.crm.dynamics.com/api/data/v8.2/sos_GetJobByPO - I get the following response:
{
"error": {
"code": "",
"message": "No HTTP resource was found that matches the request URI 'http://[my instance ].api.crm.dynamics.com/api/data/v8.2/sos_GetJobByPO'."
}
}
Any ideas on what I need to do to get the Web API call to work?
*This post is locked for comments
I have the same question (0)