Delete a Plan from an Opportunity

This endpoint deletes the specified suggested plan in an opportunity.

Required Scope

opportunity:write

🚧

Body Parameters

  • id
    Required. ID of the plan that will be removed from the opportunity.
  • type
    Type of object that will be removed as a relationship. Can only be plans.

Refer to the example request below.

https://api.betatest.degreed.com/api/v2/opportunities/<opportunityId>/relationships/suggested-plans
  -H "Content-Type: application/json"
  -H "Authorization: Bearer <access_token>"
  -X DELETE
  -d '{ \
    "data": [ \
    { \
      "id": "64rrL" \
      "type": "plans" \
        }, \
    { \
      "id": "8oWW3" \
      "type": "plans" \
        } \
    ] \
  }'
Language
Authorization
Bearer
Click Try It! to start a request and see the response here!