diff --git a/src/api/call-forwarding.js b/src/api/call-forwarding.js index 9dc960b4..ebb325c9 100644 --- a/src/api/call-forwarding.js +++ b/src/api/call-forwarding.js @@ -29,7 +29,6 @@ export async function cfGetMostRecentDestinationSetByName (params) { resource: 'cfdestinationsets', params: { name: params.name, - subscriber_id: params.subscriberId, order_by: 'id', order_by_direction: 'desc' } diff --git a/src/store/call-forwarding/actions.js b/src/store/call-forwarding/actions.js index 222c7dc8..6e844fca 100644 --- a/src/store/call-forwarding/actions.js +++ b/src/store/call-forwarding/actions.js @@ -72,10 +72,7 @@ export async function createMapping ({ dispatch, commit, state, rootGetters }, p destinations: [createDefaultDestination()] }) - const destinationSet = await cfGetMostRecentDestinationSetByName({ - name, - subscriberId: subscriberId - }) + const destinationSet = await cfGetMostRecentDestinationSetByName({ name }) let type = payload.type if (payload.type === 'cfu' && state.mappings.cft && state.mappings.cft.length > 0) {