Create paymentMethods
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Create a payment method object in DDynamics 365 Business Central.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | Financials.ReadWrite.All |
Delegated (personal Microsoft account | Not supported. |
Application | Financials.ReadWrite.All |
HTTP request
POST /financials/companies/{id}/paymentMethods
Optional query parameters
This method supports the OData Query Parameters to help customize the response.
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. |
Content-Type | application/json |
Request body
In the request body, supply a JSON representation of a paymentMethods object.
Response
If successful, this method returns 201 Created
response code and a paymentMethods object in the response body.
Example
Request
Here is an example of a request.
POST https://graph.microsoft.com/beta/financials/companies/{id}/paymentMethods
Content-type: application/json
{
"code": "CHECK",
"displayName": "Check payment"
}
Response
Here is an example of the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 201 Created
Content-type: application/json
{
"id": "id-value",
"code": "CHECK",
"displayName": "Check payment",
"lastModifiedDateTime": "2017-03-22T08:35:48.33Z"
}
Feedback
Submit and view feedback for