- [ ] `createOutgoingPayment` GraphQL Resolver augmentation - [ ] Optional CardDetails input - [ ] Add additional information to outgoing `outgoing_payment.created`webhook ``` Mutation { createOutgoingPayment(input: CreateOutgoingPaymentInput!) { } } CreateOutgoingPaymentInput { ... cardDetails: CardDetails } CardDetails { ... } ``` - [ ] Card Info Table - [ ] Foreign key on Outgoing Payment table ``` Card { id: uuid ... } ```