## Authorize transaction
The [Authorize Transaction](🔗) endpoint creates a loan and reserves the funds. When you authorize, Affirm will generate a unique `id
` that you’ll use to reference the transaction moving forward. You must authorize a transaction before you capture it.

This represents the authorize and capture flow.
_If you do not authorize a transaction, it will not be considered active. This means the user will not see the loan, and you will not be able to capture the funds. For this reason, you should authorize the loan as soon as you receive a `
checkout_token
`._
To authorize a transaction you'll need the `checkout_token
` returned from your [Checkout Integration](🔗) to pass it into the `transaction_id
` parameter.
You should receive a response that contains a unique ID ("AMLC-5X0W" in this example).
After successfully authorizing a transaction and receiving the response object, your site should do the following:
Validate that the authorized amount equals the order total
Store the `
id
` (transaction identifier)Mark the order payment as pending
If the authorization fails, your site could potentially store this checkout attempt, as it is **not** required on our end.
You should only authorize a given Affirm loan once, for the entire amount of the transaction being purchased. If you have a specific use case where this may be difficult, please contact us at [[email protected]](🔗) or use the widget at the bottom of the page.
## Capture a transaction
Once an order has been fulfilled, you must send a [Capture API](🔗) request to Affirm in order to capture or settle the funds. You will want to perform this activity from your secure back-end systems. To capture an authorized transaction, you'll need the `id
` provided in the `Authorization
` API response. There aren't any required fields that need to be stored from the `Capture
` response.
Capturing the funds is similar to capturing a credit card transaction. After you capture the loan, the following happens:
Affirm notifies the customer that the loan has been captured and that their first payment is due to Affirm in 30 days (for monthly installments) or 2 weeks (for Pay in 4)
Affirm pays the merchant within 2-3 business days via ACH transfer to the provided bank account
Note that you can perform a partial capture by specifying a value in cents within the `
amount
` parameter. The cumulative sum of partial capture amounts can not exceed the originally authorized total.
You will then receive a response with the confirmation.