paymentMethods
Retrieve payment methods by party type, party id, company uuid, user uuid
This page contains
Arguments
partyType String! | The party type (COMPANY or USER) |
partyId String! | The party id |
companyUuid String | The company uuid |
userUuid String | The user uuid |
Return Fields
[PaymentMethod] PREVIEW |
Interactive example
This is an example query. Use the embedded interactive tool below to edit the query.
Hint: use Ctrl + Space for autocompleting fields.
xxxxxxxxxx
query paymentMethods($partyType: String!, $partyId: String!, $companyUuid: String, $userUuid: String) {
paymentMethods(partyType: $partyType, partyId: $partyId, companyUuid: $companyUuid, userUuid: $userUuid) {
id
paymentMethodType
accountDisplay
}
}
xxxxxxxxxx
{
"partyType": "YOUR_PARTY_TYPE",
"partyId": "123e4567-e89b-12d3-a456-426614174000",
"companyUuid": "YOUR_COMPANY_UUID",
"userUuid": "YOUR_USER_UUID"
}